com.antgroup.antchain.openapi.ato.models.DeliveryDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class DeliveryDetail extends TeaModel {
// 收件人姓名
@NameInMap("receiver_name")
@Validation(maxLength = 32)
public String receiverName;
// 收件人手机号
@NameInMap("receiver_mobile")
@Validation(maxLength = 32)
public String receiverMobile;
// 收件人地址
@NameInMap("receiver_address")
@Validation(maxLength = 256)
public String receiverAddress;
public static DeliveryDetail build(java.util.Map map) throws Exception {
DeliveryDetail self = new DeliveryDetail();
return TeaModel.build(map, self);
}
public DeliveryDetail setReceiverName(String receiverName) {
this.receiverName = receiverName;
return this;
}
public String getReceiverName() {
return this.receiverName;
}
public DeliveryDetail setReceiverMobile(String receiverMobile) {
this.receiverMobile = receiverMobile;
return this;
}
public String getReceiverMobile() {
return this.receiverMobile;
}
public DeliveryDetail setReceiverAddress(String receiverAddress) {
this.receiverAddress = receiverAddress;
return this;
}
public String getReceiverAddress() {
return this.receiverAddress;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy