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

com.antgroup.antchain.openapi.shuziwuliu.models.EblDetail Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.shuziwuliu.models;

import com.aliyun.tea.*;

public class EblDetail extends TeaModel {
    // 电子提单copy文件hash
    @NameInMap("ebl_copy_pdf_file_hash")
    @Validation(required = true)
    public String eblCopyPdfFileHash;

    // 电子提单copy文件id
    @NameInMap("ebl_copy_pdf_file_id")
    @Validation(required = true)
    public String eblCopyPdfFileId;

    // 电子提单编号
    @NameInMap("ebl_no")
    @Validation(required = true)
    public String eblNo;

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

    public EblDetail setEblCopyPdfFileHash(String eblCopyPdfFileHash) {
        this.eblCopyPdfFileHash = eblCopyPdfFileHash;
        return this;
    }
    public String getEblCopyPdfFileHash() {
        return this.eblCopyPdfFileHash;
    }

    public EblDetail setEblCopyPdfFileId(String eblCopyPdfFileId) {
        this.eblCopyPdfFileId = eblCopyPdfFileId;
        return this;
    }
    public String getEblCopyPdfFileId() {
        return this.eblCopyPdfFileId;
    }

    public EblDetail setEblNo(String eblNo) {
        this.eblNo = eblNo;
        return this;
    }
    public String getEblNo() {
        return this.eblNo;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy