![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkattendance_1_0.models.InitAndGetLeaveALlocationQuotasRequest 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 InitAndGetLeaveALlocationQuotasRequest extends TeaModel {
/**
* example:
* f84a2829-xxxx0653
*/
@NameInMap("leaveCode")
public String leaveCode;
/**
* This parameter is required.
*
* example:
* manager1
*/
@NameInMap("opUserId")
public String opUserId;
/**
* This parameter is required.
*
* example:
* manager211
*/
@NameInMap("userId")
public String userId;
public static InitAndGetLeaveALlocationQuotasRequest build(java.util.Map map) throws Exception {
InitAndGetLeaveALlocationQuotasRequest self = new InitAndGetLeaveALlocationQuotasRequest();
return TeaModel.build(map, self);
}
public InitAndGetLeaveALlocationQuotasRequest setLeaveCode(String leaveCode) {
this.leaveCode = leaveCode;
return this;
}
public String getLeaveCode() {
return this.leaveCode;
}
public InitAndGetLeaveALlocationQuotasRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
public InitAndGetLeaveALlocationQuotasRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy