32 lines
583 B
Go
32 lines
583 B
Go
package response
|
|
|
|
import (
|
|
"repository.lenntc.com/lenntc/third-platform-sdk/sdk/topsdk/defaultability/domain"
|
|
)
|
|
|
|
type AlibabaAlscUnionElemePromotionOtherchannelGetResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
特殊推广链接
|
|
*/
|
|
Data domain.AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLink `json:"data,omitempty" `
|
|
/*
|
|
请求结果码
|
|
*/
|
|
ResultCode int64 `json:"result_code,omitempty" `
|
|
/*
|
|
返回描述
|
|
*/
|
|
Message string `json:"message,omitempty" `
|
|
}
|