-
Notifications
You must be signed in to change notification settings - Fork 43
/
update.go
42 lines (39 loc) · 2.19 KB
/
update.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package ad
import (
"github.com/bububa/oceanengine/marketing-api/enum"
"github.com/bububa/oceanengine/marketing-api/model/qianchuan/creative"
"github.com/bububa/oceanengine/marketing-api/util"
)
// UpdateRequest 更新计划(含创意生成规则)
type UpdateRequest struct {
// AdvertiserID 广告主ID
AdvertiserID uint64 `json:"advertiser_id,omitempty"`
// AdID 待修改的广告计划id
AdID uint64 `json:"ad_id,omitempty"`
// Name 计划名称,长度为1-100个字符,其中1个汉字算2位字符。需要注意:计划名称不修改的话,可不填。填入的话,需与原计划名不同,否则报错
Name string `json:"name,omitempty"`
// DeliverySetting 投放设置
DeliverySetting *DeliverySetting `json:"delivery_setting,omitempty"`
// Audience 人群定向
Audience *Audience `json:"audience,omitempty"`
// CreativeMaterialMode 创意呈现方式,和抖音号关系类型相关
CreativeMaterialMode enum.CreativeMaterialMode `json:"creative_material_mode,omitempty"`
// FirstIndustryID 创意一级行业ID
FirstIndustryID uint64 `json:"first_industry_id,omitempty"`
// SecondIndustryID 创意二级行业ID
SecondIndustryID uint64 `json:"second_industry_id,omitempty"`
// ThirdIndustryID 创意三级行业ID
ThirdIndustryID uint64 `json:"third_industry_id,omitempty"`
// AdKeywords 创意标签。最多20个标签,且每个标签长度要求为1~20个字符,汉字算2个字符
AdKeywords []string `json:"ad_keywords,omitempty"`
// CreativeList 自定义素材信息
CreativeList []creative.Creative `json:"creative_list,omitempty"`
// CreativeAutoGenerate是否开启「生成更多创意」,允许值:0 关闭(默认值)、1 开启
CreativeAutoGenerate *int `json:"creative_auto_generate,omitempty"`
// IsHomepageHide 抖音主页是否隐藏视频,和抖音号关系类型相关,返回值参考【附录-抖音号授权类型】;bind_type为OFFICIAL或SELF时,允许值:1 隐藏、0 不隐藏(默认值);bind_type不为OFFICIAL或SELF时,需传入唯一允许值0 不隐藏
IsHomePageHide *int `json:"is_homepage_hide,omitempty"`
}
// Encode implement PostRequest interface
func (r UpdateRequest) Encode() []byte {
return util.JSONMarshal(r)
}