25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

56 satır
1.1 KiB

  1. // @Title Golang SDK Client
  2. // @Description This code is auto generated
  3. // @Author Ecloud SDK
  4. package model
  5. import (
  6. "gitlab.ecloud.com/ecloud/ecloudsdkcore/position"
  7. "gitlab.ecloud.com/ecloud/ecloudsdkcore/utils"
  8. )
  9. type DeleteAssetGroupPath struct {
  10. position.Path
  11. // 素材组ID(火山资产组ID)
  12. GroupId *string `json:"groupId,omitempty"`
  13. }
  14. func (s DeleteAssetGroupPath) String() string {
  15. return utils.Beautify(s)
  16. }
  17. func (s DeleteAssetGroupPath) GoString() string {
  18. return s.String()
  19. }
  20. func (s DeleteAssetGroupPath) ToJsonString() string {
  21. return utils.ToJsonString(s)
  22. }
  23. func (s *DeleteAssetGroupPath) SetGroupId(v string) *DeleteAssetGroupPath {
  24. s.GroupId = &v
  25. return s
  26. }
  27. type DeleteAssetGroupPathBuilder struct {
  28. s *DeleteAssetGroupPath
  29. }
  30. func NewDeleteAssetGroupPathBuilder() *DeleteAssetGroupPathBuilder {
  31. s := &DeleteAssetGroupPath{}
  32. b := &DeleteAssetGroupPathBuilder{s: s}
  33. return b
  34. }
  35. func (b *DeleteAssetGroupPathBuilder) GroupId(v string) *DeleteAssetGroupPathBuilder {
  36. b.s.GroupId = &v
  37. return b
  38. }
  39. func (b *DeleteAssetGroupPathBuilder) Build() *DeleteAssetGroupPath {
  40. return b.s
  41. }