com.aliyun.dingtalkevent_1_0.models.GetCallBackFaileResultResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkevent_1_0.models;
import com.aliyun.tea.*;
public class GetCallBackFaileResultResponseBody extends TeaModel {
@NameInMap("failedList")
public java.util.List failedList;
@NameInMap("hasMore")
public Boolean hasMore;
public static GetCallBackFaileResultResponseBody build(java.util.Map map) throws Exception {
GetCallBackFaileResultResponseBody self = new GetCallBackFaileResultResponseBody();
return TeaModel.build(map, self);
}
public GetCallBackFaileResultResponseBody setFailedList(java.util.List failedList) {
this.failedList = failedList;
return this;
}
public java.util.List getFailedList() {
return this.failedList;
}
public GetCallBackFaileResultResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public static class GetCallBackFaileResultResponseBodyFailedList extends TeaModel {
/**
* example:
* {"CalendarEventUpdateTime":1668735924619,"CorpId":"ding9cd16741","ChangeType":"updated","EventType":"calendar_event_change","CalendarId":"NzE3MjU0NEB1c2V5jb218MTQwMDE2","EventTime":1668735924640,"LegacyCalendarEventId":"1C1BB560768A338","BizId":"16684640","CalendarEventId":"RVNUZllHKelEydz09","operator":{"type":"user"},"UnionIdList":["QQamYiE"]}
*/
@NameInMap("callBackData")
public String callBackData;
/**
* example:
* calendar_event_change
*/
@NameInMap("callBackTag")
public String callBackTag;
/**
* example:
* ding9f50b15b*****41
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* 166***39184
*/
@NameInMap("eventTime")
public Long eventTime;
public static GetCallBackFaileResultResponseBodyFailedList build(java.util.Map map) throws Exception {
GetCallBackFaileResultResponseBodyFailedList self = new GetCallBackFaileResultResponseBodyFailedList();
return TeaModel.build(map, self);
}
public GetCallBackFaileResultResponseBodyFailedList setCallBackData(String callBackData) {
this.callBackData = callBackData;
return this;
}
public String getCallBackData() {
return this.callBackData;
}
public GetCallBackFaileResultResponseBodyFailedList setCallBackTag(String callBackTag) {
this.callBackTag = callBackTag;
return this;
}
public String getCallBackTag() {
return this.callBackTag;
}
public GetCallBackFaileResultResponseBodyFailedList setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetCallBackFaileResultResponseBodyFailedList setEventTime(Long eventTime) {
this.eventTime = eventTime;
return this;
}
public Long getEventTime() {
return this.eventTime;
}
}
}