![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkalitrip_1_0.models.SyncExceedApplyRequest 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.dingtalkalitrip_1_0.models;
import com.aliyun.tea.*;
public class SyncExceedApplyRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 12345
*/
@NameInMap("applyId")
public String applyId;
/**
* This parameter is required.
*
* example:
* ding12345
*/
@NameInMap("corpId")
public String corpId;
/**
* This parameter is required.
*
* example:
* 同意
*/
@NameInMap("remark")
public String remark;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("status")
public Integer status;
/**
* This parameter is required.
*
* example:
* asdfg
*/
@NameInMap("thirdpartyFlowId")
public String thirdpartyFlowId;
/**
* This parameter is required.
*
* example:
* asdfgh
*/
@NameInMap("userId")
public String userId;
public static SyncExceedApplyRequest build(java.util.Map map) throws Exception {
SyncExceedApplyRequest self = new SyncExceedApplyRequest();
return TeaModel.build(map, self);
}
public SyncExceedApplyRequest setApplyId(String applyId) {
this.applyId = applyId;
return this;
}
public String getApplyId() {
return this.applyId;
}
public SyncExceedApplyRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public SyncExceedApplyRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public SyncExceedApplyRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public SyncExceedApplyRequest setThirdpartyFlowId(String thirdpartyFlowId) {
this.thirdpartyFlowId = thirdpartyFlowId;
return this;
}
public String getThirdpartyFlowId() {
return this.thirdpartyFlowId;
}
public SyncExceedApplyRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy