
com.aliyun.dingtalkalitrip_1_0.models.BillSettementCarRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkalitrip_1_0.models;
import com.aliyun.tea.*;
public class BillSettementCarRequest extends TeaModel {
@NameInMap("category")
public Long category;
@NameInMap("corpId")
public String corpId;
@NameInMap("pageNumber")
public Long pageNumber;
@NameInMap("pageSize")
public Long pageSize;
@NameInMap("periodEnd")
public String periodEnd;
@NameInMap("periodStart")
public String periodStart;
public static BillSettementCarRequest build(java.util.Map map) throws Exception {
BillSettementCarRequest self = new BillSettementCarRequest();
return TeaModel.build(map, self);
}
public BillSettementCarRequest setCategory(Long category) {
this.category = category;
return this;
}
public Long getCategory() {
return this.category;
}
public BillSettementCarRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public BillSettementCarRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public BillSettementCarRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public BillSettementCarRequest setPeriodEnd(String periodEnd) {
this.periodEnd = periodEnd;
return this;
}
public String getPeriodEnd() {
return this.periodEnd;
}
public BillSettementCarRequest setPeriodStart(String periodStart) {
this.periodStart = periodStart;
return this;
}
public String getPeriodStart() {
return this.periodStart;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy