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

com.aliyun.dingtalkbizfinance_2_0.models.BatchSyncBankReceiptRequest 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_2_0.models;

import com.aliyun.tea.*;

public class BatchSyncBankReceiptRequest extends TeaModel {
    @NameInMap("body")
    public java.util.List body;

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

    public BatchSyncBankReceiptRequest setBody(java.util.List body) {
        this.body = body;
        return this;
    }
    public java.util.List getBody() {
        return this.body;
    }

    public static class BatchSyncBankReceiptRequestBody extends TeaModel {
        /**
         * example:
         * 

https://xxxxx

*/ @NameInMap("fileDownloadUrl") public String fileDownloadUrl; /** * example: *

xxxx回单.pdf

*/ @NameInMap("fileName") public String fileName; /** * example: *

2024000001902335

*/ @NameInMap("messageId") public String messageId; /** * example: *

detailId

*/ @NameInMap("messageIdType") public String messageIdType; public static BatchSyncBankReceiptRequestBody build(java.util.Map map) throws Exception { BatchSyncBankReceiptRequestBody self = new BatchSyncBankReceiptRequestBody(); return TeaModel.build(map, self); } public BatchSyncBankReceiptRequestBody setFileDownloadUrl(String fileDownloadUrl) { this.fileDownloadUrl = fileDownloadUrl; return this; } public String getFileDownloadUrl() { return this.fileDownloadUrl; } public BatchSyncBankReceiptRequestBody setFileName(String fileName) { this.fileName = fileName; return this; } public String getFileName() { return this.fileName; } public BatchSyncBankReceiptRequestBody setMessageId(String messageId) { this.messageId = messageId; return this; } public String getMessageId() { return this.messageId; } public BatchSyncBankReceiptRequestBody setMessageIdType(String messageIdType) { this.messageIdType = messageIdType; return this; } public String getMessageIdType() { return this.messageIdType; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy