You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // @Title Golang SDK Client
- // @Description This code is auto generated
- // @Author Ecloud SDK
-
- package model
-
- import (
- "gitlab.ecloud.com/ecloud/ecloudsdkcore/position"
- "gitlab.ecloud.com/ecloud/ecloudsdkcore/utils"
- )
-
- type DeleteAssetGroupPath struct {
- position.Path
- // 素材组ID(火山资产组ID)
- GroupId *string `json:"groupId,omitempty"`
- }
-
- func (s DeleteAssetGroupPath) String() string {
- return utils.Beautify(s)
- }
-
- func (s DeleteAssetGroupPath) GoString() string {
- return s.String()
- }
-
- func (s DeleteAssetGroupPath) ToJsonString() string {
- return utils.ToJsonString(s)
- }
-
- func (s *DeleteAssetGroupPath) SetGroupId(v string) *DeleteAssetGroupPath {
- s.GroupId = &v
- return s
- }
-
-
- type DeleteAssetGroupPathBuilder struct {
- s *DeleteAssetGroupPath
- }
-
- func NewDeleteAssetGroupPathBuilder() *DeleteAssetGroupPathBuilder {
- s := &DeleteAssetGroupPath{}
- b := &DeleteAssetGroupPathBuilder{s: s}
- return b
- }
-
- func (b *DeleteAssetGroupPathBuilder) GroupId(v string) *DeleteAssetGroupPathBuilder {
- b.s.GroupId = &v
- return b
- }
-
- func (b *DeleteAssetGroupPathBuilder) Build() *DeleteAssetGroupPath {
- return b.s
- }
-
|