topsdk/defaultability/response/TaobaoUnideskRtaUserAdverti...

21 lines
769 B
Go
Raw 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 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 深转
}