fix:广告主查询接口接口
This commit is contained in:
parent
c14a3d5849
commit
97402c3720
|
@ -19,7 +19,7 @@ type AdvertiserTopQueryDTO struct {
|
||||||
ActivePeriod *int64 `json:"active_period,omitempty" required:"false" `
|
ActivePeriod *int64 `json:"active_period,omitempty" required:"false" `
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *TaobaoUnideskRtaUserAdvertiserGetRequest) setIds(v []int64) *TaobaoUnideskRtaUserAdvertiserGetRequest {
|
func (s *TaobaoUnideskRtaUserAdvertiserGetRequest) SetIds(v []int64) *TaobaoUnideskRtaUserAdvertiserGetRequest {
|
||||||
s.AdvertiserTopQueryDTO.Ids = &v
|
s.AdvertiserTopQueryDTO.Ids = &v
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,12 +9,12 @@ type TaobaoUnideskRtaUserAdvertiserGetResponse struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type AdvertiserTopDTO struct {
|
type AdvertiserTopDTO struct {
|
||||||
Id int64 `json:"id"`
|
Id int64 `json:"id"` // 广告主id
|
||||||
Name string `json:"name"`
|
Name string `json:"name"` // 广告主名称
|
||||||
Media string `json:"media"`
|
Media string `json:"media"` // 直投媒体
|
||||||
Status int `json:"status"`
|
Status int `json:"status"` // 广告主状态,1:启用,0:停用
|
||||||
CustomerName string `json:"customer_name"`
|
CustomerName string `json:"customer_name"` // 客户名称
|
||||||
MasterId int64 `json:"master_id"`
|
MasterId int64 `json:"master_id"` // 组织id
|
||||||
OrganizationName string `json:"organization_name"`
|
OrganizationName string `json:"organization_name"` // 组织名称
|
||||||
OptimizeType int `json:"optimize_type"`
|
OptimizeType int `json:"optimize_type"` // 账户转化类型 1 引流 2 深转
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue