Skip to content

Commit

Permalink
feat(promotion): 巨量广告新增自动识别产品信息,增加关联产品状态校验
Browse files Browse the repository at this point in the history
应答新增自动识别产品信息。当项目层级设置关联产品信息时,广告层级产品信息设置校验逻辑变动
  • Loading branch information
bububa committed Oct 21, 2024
1 parent 4dae3df commit 8cba376
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions marketing-api/model/v3/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ type RelatedProduct struct {
// 产品ID,当启用商品库时必填,可通过【商品广告-获取商品列表】 查询,创建后不可修改
// 当delivery_mode选择PROCEDURAL且landing_type选择LINK时,传入报错
ProductID model.JSONUint64 `json:"product_id,omitempty"`
// UniqueProductID 线索版产品ID,可通过【商品广告-获取线索商品列表】查询获取id(该接口下的product_id就是unique_product_id),创建后不可修改
// 如果投放线索版商品,只需要传入unique_product_id
UniqueProductID uint64 `json:"unique_product_id,omitempty"`
// AssetID 物件ID,可通过【商品广告-获取投放条件列表】获取,创建后不可修改。
AssetID uint64 `json:"asset_id,omitempty"`
// Products 产品ID列表,上限为10
Expand Down
6 changes: 6 additions & 0 deletions marketing-api/model/v3/promotion/promotion.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,12 @@ type ProductInfo struct {
Titles []string `json:"titles,omitempty"`
// ImageIDs 产品主图
ImageIDs []string `json:"image_ids,omitempty"`
// EchoTitles 关联产品名称,
// 该参数返回项目中的已关联产品或自动识别产品(AD平台功能)的产品名称
EchoTitles []string `json:"echo_titles,omitempty"`
// EchoImageIDs 关联产品主图,
// 该参数返回项目中的已关联产品或自动识别产品(AD平台功能)的产品主图
EchoImageIDs []string `json:"echo_image_ids,omitempty"`
// SellingPoints 产品卖点
SellingPoints []string `json:"selling_points,omitempty"`
// ProductNameType 产品名称类型,枚举值:DPA产品库字段,CUSTOM自定义
Expand Down

0 comments on commit 8cba376

Please sign in to comment.