third-platform-sdk/sdk/topsdk/defaultability/domain/AlibabaAlscUnionPromotionLinkAnalyzePromotionObject.go
2024-05-04 16:57:40 +08:00

21 lines
660 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 AlibabaAlscUnionPromotionLinkAnalyzePromotionObject struct {
/*
推广对象类型1-商品2-店铺3-活动4-卡券5-SKU6-营销活动) */
ObjectType *int64 `json:"object_type,omitempty" `
/*
推广对象ID */
ObjectId *string `json:"object_id,omitempty" `
}
func (s *AlibabaAlscUnionPromotionLinkAnalyzePromotionObject) SetObjectType(v int64) *AlibabaAlscUnionPromotionLinkAnalyzePromotionObject {
s.ObjectType = &v
return s
}
func (s *AlibabaAlscUnionPromotionLinkAnalyzePromotionObject) SetObjectId(v string) *AlibabaAlscUnionPromotionLinkAnalyzePromotionObject {
s.ObjectId = &v
return s
}