![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkevent_1_0.models.GetCallBackFaileResultRequest 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 GetCallBackFaileResultRequest extends TeaModel {
/**
* example:
* 1606126433000
*/
@NameInMap("beginTime")
public Long beginTime;
/**
* example:
* 1606126493000
*/
@NameInMap("endTime")
public Long endTime;
public static GetCallBackFaileResultRequest build(java.util.Map map) throws Exception {
GetCallBackFaileResultRequest self = new GetCallBackFaileResultRequest();
return TeaModel.build(map, self);
}
public GetCallBackFaileResultRequest setBeginTime(Long beginTime) {
this.beginTime = beginTime;
return this;
}
public Long getBeginTime() {
return this.beginTime;
}
public GetCallBackFaileResultRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy