All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkalitrip_1_0.models.BillSettementFlightRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkalitrip_1_0.models;

import com.aliyun.tea.*;

public class BillSettementFlightRequest extends TeaModel {
    // 类目:机酒火车 1:机票; 2:酒店; 4:用车 6:商旅火车票
    @NameInMap("category")
    public Long category;

    // 第三方企业ID
    @NameInMap("corpId")
    public String corpId;

    // 页数,从1开始
    @NameInMap("pageNumber")
    public Long pageNumber;

    // 每页数据量,默认100,最高500
    @NameInMap("pageSize")
    public Long pageSize;

    // 记账更新结束日期
    @NameInMap("periodEnd")
    public String periodEnd;

    // 记账更新开始日期
    @NameInMap("periodStart")
    public String periodStart;

    public static BillSettementFlightRequest build(java.util.Map map) throws Exception {
        BillSettementFlightRequest self = new BillSettementFlightRequest();
        return TeaModel.build(map, self);
    }

    public BillSettementFlightRequest setCategory(Long category) {
        this.category = category;
        return this;
    }
    public Long getCategory() {
        return this.category;
    }

    public BillSettementFlightRequest setCorpId(String corpId) {
        this.corpId = corpId;
        return this;
    }
    public String getCorpId() {
        return this.corpId;
    }

    public BillSettementFlightRequest setPageNumber(Long pageNumber) {
        this.pageNumber = pageNumber;
        return this;
    }
    public Long getPageNumber() {
        return this.pageNumber;
    }

    public BillSettementFlightRequest setPageSize(Long pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Long getPageSize() {
        return this.pageSize;
    }

    public BillSettementFlightRequest setPeriodEnd(String periodEnd) {
        this.periodEnd = periodEnd;
        return this;
    }
    public String getPeriodEnd() {
        return this.periodEnd;
    }

    public BillSettementFlightRequest setPeriodStart(String periodStart) {
        this.periodStart = periodStart;
        return this;
    }
    public String getPeriodStart() {
        return this.periodStart;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy