21 lines
769 B
Go
21 lines
769 B
Go
package response
|
||
|
||
type TaobaoUnideskRtaUserAdvertiserGetResponse struct {
|
||
|
||
/*
|
||
Result
|
||
*/
|
||
Result []AdvertiserTopDTO `json:"result"`
|
||
}
|
||
|
||
type AdvertiserTopDTO struct {
|
||
Id int64 `json:"id"` // 广告主id
|
||
Name string `json:"name"` // 广告主名称
|
||
Media string `json:"media"` // 直投媒体
|
||
Status int `json:"status"` // 广告主状态,1:启用,0:停用
|
||
CustomerName string `json:"customer_name"` // 客户名称
|
||
MasterId int64 `json:"master_id"` // 组织id
|
||
OrganizationName string `json:"organization_name"` // 组织名称
|
||
OptimizeType int `json:"optimize_type"` // 账户转化类型 1 引流 2 深转
|
||
}
|