{
"type": "object",
"properties": {
"id": {
"type": "string",
"title": "群发id"
},
"successTotal": {
"type": "number",
"title": "群发成功对象数"
},
"failedTotal": {
"type": "number",
"title": "群发失败对象数"
},
"startTimestamp": {
"type": "number",
"title": "(毫秒)群发创建时间时间"
},
"scheduleTimestamp": {
"type": "integer",
"title": "(毫秒)群发定时时间,定时任务存在"
},
"finishTimestamp": {
"type": "number",
"title": "群发完成时间"
},
"failedList": {
"type": "array",
"items": {
"type": "object",
"properties": {
"externalUserId": {
"type": "string",
"title": "失败对象外部联系人id"
},
"status": {
"type": "string",
"title": "失败原因"
}
},
"x-apifox-orders": [
"externalUserId",
"status"
]
},
"title": "失败对象列表"
}
},
"required": [
"id",
"successTotal",
"failedTotal",
"startTimestamp"
],
"x-apifox-orders": [
"id",
"successTotal",
"failedTotal",
"startTimestamp",
"scheduleTimestamp",
"finishTimestamp",
"failedList"
]
}