Files
baseapi/platformapi/tao_vegetable/sdk/ability585/domain/AlibabaWdkSkuAddChannelProp.go
邹宗楠 65976332fc 1
2023-06-15 09:08:54 +08:00

23 lines
622 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package domain
type AlibabaWdkSkuAddChannelProp struct {
/*
渠道类型txd淘鲜达elm饿了么shareStore共享库存 */
ChannelType *string `json:"channel_type,omitempty" `
/*
渠道属性取值为key-value键值对形式 */
Props *[]AlibabaWdkSkuAddPropField `json:"props,omitempty" `
}
func (s *AlibabaWdkSkuAddChannelProp) SetChannelType(v string) *AlibabaWdkSkuAddChannelProp {
s.ChannelType = &v
return s
}
func (s *AlibabaWdkSkuAddChannelProp) SetProps(v []AlibabaWdkSkuAddPropField) *AlibabaWdkSkuAddChannelProp {
s.Props = &v
return s
}