@@ -29,7 +29,7 @@ public class WxMaCodeSubmitAuditRequest implements Serializable {
29
29
* 提交审核项的一个列表(至少填写1项,至多填写5项)
30
30
*/
31
31
@ SerializedName ("item_list" )
32
- private List <WxMaCategory > itemList ;
32
+ private List <WxMaCodeSubmitAuditItem > itemList ;
33
33
34
34
/**
35
35
* feedback_info String 否 反馈内容,至多 200 字
@@ -47,75 +47,40 @@ public class WxMaCodeSubmitAuditRequest implements Serializable {
47
47
* preview_info Object 否 预览信息(小程序页面截图和操作录屏)
48
48
*/
49
49
@ SerializedName ("preview_info" )
50
- private PreviewInfo previewInfo ;
50
+ private WxMaCodeSubmitAuditPreviewInfo previewInfo ;
51
51
52
52
/**
53
- * version_desc String 否 小程序版本说明和功能解释
53
+ * version_desc
54
+ * String
55
+ * 否
56
+ * 小程序版本说明和功能解释
54
57
*/
55
58
@ SerializedName ("version_desc" )
56
59
private String versionDesc ;
57
60
58
61
/**
59
- * ugc_declare Object 否 用户生成内容场景(UGC)信息安全声明
62
+ * ugc_declare
63
+ * Object
64
+ * 否
65
+ * 用户生成内容场景(UGC)信息安全声明
60
66
*/
61
67
@ SerializedName ("ugc_declare" )
62
- private UgcDeclare ugcDeclare ;
68
+ private WxMaCodeSubmitAuditUgcDeclare ugcDeclare ;
63
69
64
- public String toJson () {
65
- return WxMaGsonBuilder .create ().toJson (this );
66
- }
67
-
68
- @ Data
69
- @ Accessors (chain = true )
70
- public static class PreviewInfo implements Serializable {
71
- private static final long serialVersionUID = -3391652096859063951L ;
70
+ /**
71
+ * 用于声明是否不使用“代码中检测出但是未配置的隐私相关接口”
72
+ */
73
+ @ SerializedName ("privacy_api_not_use" )
74
+ private Boolean privacyApiNotUse ;
72
75
73
- /**
74
- * video_id_list String Array 否 录屏mediaid列表,可以通过提审素材上传接口获得
75
- */
76
- @ SerializedName ("video_id_list " )
77
- private List < String > videoIdList ;
76
+ /**
77
+ * 订单中心path
78
+ */
79
+ @ SerializedName ("order_path " )
80
+ private String orderPath ;
78
81
79
- /**
80
- * pic_id_list String Array 否 截屏mediaid列表,可以通过提审素材上传接口获得
81
- */
82
- @ SerializedName ("pic_id_list" )
83
- private List <String > picIdList ;
82
+ public String toJson () {
83
+ return WxMaGsonBuilder .create ().toJson (this );
84
84
}
85
85
86
- @ Data
87
- @ Accessors (chain = true )
88
- public static class UgcDeclare implements Serializable {
89
- private static final long serialVersionUID = 201470564426848261L ;
90
-
91
- /**
92
- * scene Number Array 否 UGC场景 0,不涉及用户生成内容, 1.用户资料,2.图片,3.视频,4.文本,5其他, 可多选,当scene填0时无需填写下列字段
93
- */
94
- @ SerializedName ("scene" )
95
- private Integer [] scene ;
96
-
97
- /**
98
- * other_scene_desc String 否 当scene选其他时的说明,不超时256字
99
- */
100
- @ SerializedName ("other_scene_desc" )
101
- private String otherSceneDesc ;
102
-
103
- /**
104
- * method Number Array 否 内容安全机制 1.使用平台建议的内容安全API,2.使用其他的内容审核产品,3.通过人工审核把关,4.未做内容审核把关
105
- */
106
- @ SerializedName ("method" )
107
- private Integer [] method ;
108
-
109
- /**
110
- * has_audit_team Number 否 是否有审核团队, 0.无,1.有,默认0
111
- */
112
- @ SerializedName ("has_audit_team" )
113
- private Integer hasAuditTeam ;
114
-
115
- /**
116
- * audit_desc String 否 说明当前对UGC内容的审核机制,不超过256字
117
- */
118
- @ SerializedName ("audit_desc" )
119
- private String auditDesc ;
120
- }
121
86
}
0 commit comments