-
Notifications
You must be signed in to change notification settings - Fork 43
/
reject_reason.go
86 lines (78 loc) · 3.07 KB
/
reject_reason.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package promotion
import (
"encoding/json"
"strconv"
"github.com/bububa/oceanengine/marketing-api/enum"
"github.com/bububa/oceanengine/marketing-api/model"
"github.com/bububa/oceanengine/marketing-api/util"
)
// RejectReasonRequest 获取计划审核建议 API Request
type RejectReasonRequest struct {
// AdvertiserID 广告主ID
AdvertiserID uint64 `json:"advertiser_id,omitempty"`
// PromotionIDs 广告计划 ID,最多传10个广告计划ID
PromotionIDs []uint64 `json:"promotion_ids,omitempty"`
}
// Encode implement GetRequest interface
func (r RejectReasonRequest) Encode() string {
values := util.GetUrlValues()
values.Set("advertiser_id", strconv.FormatUint(r.AdvertiserID, 10))
ids, _ := json.Marshal(r.PromotionIDs)
values.Set("promotion_ids", string(ids))
ret := values.Encode()
util.PutUrlValues(values)
return ret
}
// RejectReasonResponse 获取计划审核建议 API Response
type RejectReasonResponse struct {
model.BaseResponse
Data struct {
List []RejectReason `json:"list,omitempty"`
} `json:"data,omitempty"`
}
// RejectReason 计划审核意见
type RejectReason struct {
// PromotionID 广告ID
PromotionID uint64 `json:"promotion_id,omitempty"`
// PromotionReject 广告维度审核建议
PromotionReject []PromotionReject `json:"promotion_reject,omitempty"`
// MaterialReject 素材维度审核建议
MaterialReject []MaterialReject `json:"material_reject,omitempty"`
}
// PromotionReject 广告维度审核建议
type PromotionReject struct {
// Content 审核项
Content string `json:"content,omitempty"`
// RejectReason 审核建议
RejectReason []string `json:"reject_reason,omitempty"`
// Suggestion 审核建议
Suggestion []string `json:"suggestion,omitempty"`
}
// MaterialReject 素材维度审核建议
type MaterialReject struct {
// Type 素材类型,枚举值:
// CREATIVE_IMAGE 图片、CREATIVE_VIDEO 视频、CREATIVE_TITLE 标题、CALL_TO_ACTION 行动号召、CREATIVE_URL 创意详情页、PRODUCT_IMAGE 产品主图、PRODUCT_SELLING_POINTS 产品卖点、PRODUCT_DESCRIBE 产品名称 CREATIVE_COMPONENT 创意组件
Type enum.MaterialType `json:"type,omitempty"`
// Item 根据不同素材类型返回相应的值
// - CREATIVE_URL 创意详情页:web_url;external_url;playable_url
// - CREATIVE_TITLE 标题:title
// - CREATIVE_CAROUSEL 图文素材
// - CREATIVE_IMAGE 图片:image_id
// - CREATIVE_VIDEO 视频:video_id
// - CALL_TO_ACTION 行动号召:号召文案
// - PRODUCT_IMAGE 产品主图:image_id
// - PRODUCT_SELLING_POINTS 产品卖点:产品卖点文案
// - PRODUCT_DESCRIB 产品名称:产品名称文案
// - CREATIVE_COMPONENT 创意组件:component_id
// - ANCHOR 锚点:anchor_id
// - AWEME_NICK_NAME 抖音昵称:抖音昵称
Item string `json:"item,omitempty"`
// RejectReason 审核建议
RejectReason []string `json:"reject_reason,omitempty"`
// Suggestion 审核建议
Suggestion []string `json:"suggestion,omitempty"`
// AuditPlatform 审核来源类型,返回值:
// AD 广告审核
// CONTENT 内容审核
AuditPlatform enum.AuditPlatform `json:"ad_platform,omitempty"`
}