
com.aliyun.dingtalkreport_1_0.models.GetSubmitStatisticsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkreport_1_0.models;
import com.aliyun.tea.*;
public class GetSubmitStatisticsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1507564800000
*/
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*
* example:
* user123
*/
@NameInMap("operationUserId")
public String operationUserId;
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("remindId")
public Long remindId;
/**
* This parameter is required.
*
* example:
* 1507564800000
*/
@NameInMap("startTime")
public Long startTime;
/**
* This parameter is required.
*
* example:
* 18xxxxx
*/
@NameInMap("templateId")
public String templateId;
public static GetSubmitStatisticsRequest build(java.util.Map map) throws Exception {
GetSubmitStatisticsRequest self = new GetSubmitStatisticsRequest();
return TeaModel.build(map, self);
}
public GetSubmitStatisticsRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public GetSubmitStatisticsRequest setOperationUserId(String operationUserId) {
this.operationUserId = operationUserId;
return this;
}
public String getOperationUserId() {
return this.operationUserId;
}
public GetSubmitStatisticsRequest setRemindId(Long remindId) {
this.remindId = remindId;
return this;
}
public Long getRemindId() {
return this.remindId;
}
public GetSubmitStatisticsRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public GetSubmitStatisticsRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy