com.aliyun.dingtalkalitrip_1_0.models.BillSettementHotelRequest 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 BillSettementHotelRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("category")
public Long category;
/**
* example:
* corpx
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 100
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* example:
* 2021-10-01
*/
@NameInMap("periodEnd")
public String periodEnd;
/**
* example:
* 2021-10-01
*/
@NameInMap("periodStart")
public String periodStart;
public static BillSettementHotelRequest build(java.util.Map map) throws Exception {
BillSettementHotelRequest self = new BillSettementHotelRequest();
return TeaModel.build(map, self);
}
public BillSettementHotelRequest setCategory(Long category) {
this.category = category;
return this;
}
public Long getCategory() {
return this.category;
}
public BillSettementHotelRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public BillSettementHotelRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public BillSettementHotelRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public BillSettementHotelRequest setPeriodEnd(String periodEnd) {
this.periodEnd = periodEnd;
return this;
}
public String getPeriodEnd() {
return this.periodEnd;
}
public BillSettementHotelRequest setPeriodStart(String periodStart) {
this.periodStart = periodStart;
return this;
}
public String getPeriodStart() {
return this.periodStart;
}
}