Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FailedMapItem ¶
type MaterialBatchUploadImageSyncData ¶
type MaterialBatchUploadImageSyncData struct { // 成功上传的素材,key为参数中的request_id SuccessMap map[string]SuccessMapItem `json:"success_map"` // 失败的素材,key为参数中的request_id FailedMap map[string]FailedMapItem `json:"failed_map"` }
type MaterialBatchUploadImageSyncResponse ¶
type MaterialBatchUploadImageSyncResponse struct { doudian_sdk.BaseDoudianOpApiResponse Data *MaterialBatchUploadImageSyncData `json:"data"` }
type SuccessMapItem ¶
type SuccessMapItem struct { // 素材id,素材中心对素材的唯一编号 MaterialId string `json:"MaterialId"` // 素材名称,长度限制为50个字符 Name string `json:"Name"` // 文件夹id,“0”表示将素材上传到了素材中心根目录 FolderId string `json:"FolderId"` // 上传素材时,传入参数url的取值 OriginUrl string `json:"OriginUrl"` // 素材中心返回的url,正在下线,替代方案见:https://op.jinritemai.com/docs/notice-docs/5/2668 ByteUrl string `json:"ByteUrl"` // 审核状态 1-待审核 2-审核中 3-审核通过 4-审核拒绝 AuditStatus int32 `json:"AuditStatus"` // 是否为新建的素材,false-表示素材已经存在或者request_id重复使用,true-表示新建 IsNew bool `json:"IsNew"` }
Click to show internal directories.
Click to hide internal directories.