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

com.antgroup.antchain.openapi.shuziwuliu.models.EblDeatil 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 EblDeatil 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 EblDeatil build(java.util.Map map) throws Exception {
        EblDeatil self = new EblDeatil();
        return TeaModel.build(map, self);
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy