21 lines
522 B
Go
21 lines
522 B
Go
package response
|
|
|
|
type TaobaoUnideskRtaUserAdvertiserGetResponse struct {
|
|
|
|
/*
|
|
Result
|
|
*/
|
|
Result []AdvertiserTopDTO `json:"result"`
|
|
}
|
|
|
|
type AdvertiserTopDTO struct {
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Media string `json:"media"`
|
|
Status int `json:"status"`
|
|
CustomerName string `json:"customer_name"`
|
|
MasterId int64 `json:"master_id"`
|
|
OrganizationName string `json:"organization_name"`
|
|
OptimizeType int `json:"optimize_type"`
|
|
}
|