Skip to content

Commit 579a55d

Browse files
committed
feat: 抖音小游戏IAA支持智能托管投放模式
托管投放是面向IAA全局的升级版自动化投放产品,为所有抖小IAA广告主提供的一套极简投放模式,可简化创编流程、优化投放效率,用有限的人力完成更高程度的投放,并保障基础效果达成。详情可见产品操作手册。 本功能为白名单开放,如需使用可咨询对接销售/运营(白名单key:micro_app_TuoGuan)。
1 parent 21552c1 commit 579a55d

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

marketing-api/enum/delivery_type.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ const (
88
DeliveryType_NORMAL DeliveryType = "NORMAL"
99
// DeliveryType_DURATION 周期稳投(目前仅支持搜索广告)
1010
DeliveryType_DURATION DeliveryType = "DURATION"
11+
// DeliveryType_UBX_INTELLIGENT UBA智能托管
12+
DeliveryType_UBX_INTELLIGENT DeliveryType = "UBX_INTELLIGENT"
1113
)

marketing-api/model/v3/project/create.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,6 @@ type CreateResult struct {
140140
SuppleMentaryAgreementInfo string `json:"supple_mentary_agreement_info,omitempty"`
141141
// ErrorKeywordList 上传失败的关键词list
142142
ErrorKeywordList []ErrorKeyword `json:"error_keyword_list,omitempty"`
143+
// AutoDurationProjectCount 账户下剩余可建智能托管项目额度数量(UBA智能托管项目创建成功时返回)
144+
AutioDurationProjectCount int `json:"auto_duration_project_count,omitempty"`
143145
}

marketing-api/model/v3/promotion/promotion.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,8 @@ type VideoMaterial struct {
271271
// DISABLE 暂停
272272
// ENABLE 启用
273273
MaterialOptStatus enum.OptStatus `json:"material_opt_status,omitempty"`
274+
// CreateTime 素材创建时间
275+
CreateTime string `json:"create_time,omitempty"`
274276
}
275277

276278
// ImageMaterial 创意图片素材
@@ -279,6 +281,8 @@ type ImageMaterial struct {
279281
ImageMode enum.ImageMode `json:"image_mode,omitempty"`
280282
// Images 图片ID数组
281283
Images []Image `json:"images,omitempty"`
284+
// CreateTime 素材创建时间
285+
CreateTime string `json:"create_time,omitempty"`
282286
}
283287

284288
// Image 图片
@@ -486,6 +490,8 @@ type CarouselMaterial struct {
486490
IsBlueFlowRecommendMaterial bool `json:"is_blue_flow_recommend_material,omitempty"`
487491
// ImageSubject 图片主题
488492
ImageSubject []file.ImageSubject `json:"image_subject,omitempty"`
493+
// CreateTime 素材创建时间
494+
CreateTime string `json:"create_time,omitempty"`
489495
}
490496

491497
// RelatedProduct UBP多品广告素材组合

0 commit comments

Comments
 (0)