com.aliyun.dingtalkalitrip_1_0.models.GetHotelExceedApplyRequest 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 GetHotelExceedApplyRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("applyId")
public String applyId;
/**
* This parameter is required.
*
* example:
* ding1234
*/
@NameInMap("corpId")
public String corpId;
public static GetHotelExceedApplyRequest build(java.util.Map map) throws Exception {
GetHotelExceedApplyRequest self = new GetHotelExceedApplyRequest();
return TeaModel.build(map, self);
}
public GetHotelExceedApplyRequest setApplyId(String applyId) {
this.applyId = applyId;
return this;
}
public String getApplyId() {
return this.applyId;
}
public GetHotelExceedApplyRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
}