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

com.aliyun.dingtalkbizfinance_1_0.models.PushHistoricalReceiptsRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class PushHistoricalReceiptsRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("bizId") public String bizId; @NameInMap("endTime") public Long endTime; @NameInMap("forcedIgnoreDup") public Boolean forcedIgnoreDup; /** *

This parameter is required.

*/ @NameInMap("formCodeList") public java.util.List formCodeList; /** *

This parameter is required.

*/ @NameInMap("startTime") public Long startTime; public static PushHistoricalReceiptsRequest build(java.util.Map map) throws Exception { PushHistoricalReceiptsRequest self = new PushHistoricalReceiptsRequest(); return TeaModel.build(map, self); } public PushHistoricalReceiptsRequest setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public PushHistoricalReceiptsRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public PushHistoricalReceiptsRequest setForcedIgnoreDup(Boolean forcedIgnoreDup) { this.forcedIgnoreDup = forcedIgnoreDup; return this; } public Boolean getForcedIgnoreDup() { return this.forcedIgnoreDup; } public PushHistoricalReceiptsRequest setFormCodeList(java.util.List formCodeList) { this.formCodeList = formCodeList; return this; } public java.util.List getFormCodeList() { return this.formCodeList; } public PushHistoricalReceiptsRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy