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

23 lines
685 B
Go

package domain
type AlibabaPricePromotionItemAddPromotionContentResult struct {
/*
错误信息 */
ErrorMessageList *[]string `json:"error_message_list,omitempty" `
/*
唯一标示 */
SkuCodeUniqueIdStr *string `json:"sku_code_unique_id_str,omitempty" `
}
func (s *AlibabaPricePromotionItemAddPromotionContentResult) SetErrorMessageList(v []string) *AlibabaPricePromotionItemAddPromotionContentResult {
s.ErrorMessageList = &v
return s
}
func (s *AlibabaPricePromotionItemAddPromotionContentResult) SetSkuCodeUniqueIdStr(v string) *AlibabaPricePromotionItemAddPromotionContentResult {
s.SkuCodeUniqueIdStr = &v
return s
}