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

com.antgroup.antchain.openapi.twc.models.SupplierLogisticInfo Maven / Gradle / Ivy

There is a newer version: 1.12.23
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;

import com.aliyun.tea.*;

public class SupplierLogisticInfo extends TeaModel {
    // 采购平台的物流单号
    @NameInMap("logistic_order_id")
    @Validation(required = true)
    public String logisticOrderId;

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

    public SupplierLogisticInfo setLogisticOrderId(String logisticOrderId) {
        this.logisticOrderId = logisticOrderId;
        return this;
    }
    public String getLogisticOrderId() {
        return this.logisticOrderId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy