com.aliyun.dingtalkattendance_1_0.models.CheckClosingAccountRequest 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.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class CheckClosingAccountRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bizCode")
public String bizCode;
/**
* This parameter is required.
*/
@NameInMap("userIds")
public java.util.List userIds;
/**
* This parameter is required.
*/
@NameInMap("userTimeRange")
public java.util.List userTimeRange;
public static CheckClosingAccountRequest build(java.util.Map map) throws Exception {
CheckClosingAccountRequest self = new CheckClosingAccountRequest();
return TeaModel.build(map, self);
}
public CheckClosingAccountRequest setBizCode(String bizCode) {
this.bizCode = bizCode;
return this;
}
public String getBizCode() {
return this.bizCode;
}
public CheckClosingAccountRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
public CheckClosingAccountRequest setUserTimeRange(java.util.List userTimeRange) {
this.userTimeRange = userTimeRange;
return this;
}
public java.util.List getUserTimeRange() {
return this.userTimeRange;
}
public static class CheckClosingAccountRequestUserTimeRange extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*/
@NameInMap("startTime")
public Long startTime;
public static CheckClosingAccountRequestUserTimeRange build(java.util.Map map) throws Exception {
CheckClosingAccountRequestUserTimeRange self = new CheckClosingAccountRequestUserTimeRange();
return TeaModel.build(map, self);
}
public CheckClosingAccountRequestUserTimeRange setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public CheckClosingAccountRequestUserTimeRange setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
}
}