third-platform-sdk/sdk/topsdk/defaultability/domain/AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLink.go
2025-06-10 12:34:43 +08:00

21 lines
684 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 AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLink struct {
/*
抖音内部跳转shcema地址30天有效 */
DySchema *string `json:"dy_schema,omitempty" `
/*
抖音外部唤起链接30天有效 */
DyLink *string `json:"dy_link,omitempty" `
}
func (s *AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLink) SetDySchema(v string) *AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLink {
s.DySchema = &v
return s
}
func (s *AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLink) SetDyLink(v string) *AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLink {
s.DyLink = &v
return s
}