All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkattendance_1_0.models.CheckClosingAccountRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy