com.aliyun.dingtalkedu_1_0.models.CreateSnsAppOrderResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class CreateSnsAppOrderResponseBody extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("actualAmount")
public Long actualAmount;
/**
* example:
* 1234
*/
@NameInMap("alipayAppId")
public String alipayAppId;
/**
* example:
* alipay_sdk=alipay-sdk-java-dynamicVersionNo&version=1.0
*/
@NameInMap("body")
public String body;
/**
* example:
* 10000
*/
@NameInMap("merchantId")
public String merchantId;
/**
* example:
* M00001
*/
@NameInMap("merchantOrderNo")
public String merchantOrderNo;
/**
* example:
* CM0001
*/
@NameInMap("orderNo")
public String orderNo;
public static CreateSnsAppOrderResponseBody build(java.util.Map map) throws Exception {
CreateSnsAppOrderResponseBody self = new CreateSnsAppOrderResponseBody();
return TeaModel.build(map, self);
}
public CreateSnsAppOrderResponseBody setActualAmount(Long actualAmount) {
this.actualAmount = actualAmount;
return this;
}
public Long getActualAmount() {
return this.actualAmount;
}
public CreateSnsAppOrderResponseBody setAlipayAppId(String alipayAppId) {
this.alipayAppId = alipayAppId;
return this;
}
public String getAlipayAppId() {
return this.alipayAppId;
}
public CreateSnsAppOrderResponseBody setBody(String body) {
this.body = body;
return this;
}
public String getBody() {
return this.body;
}
public CreateSnsAppOrderResponseBody setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public CreateSnsAppOrderResponseBody setMerchantOrderNo(String merchantOrderNo) {
this.merchantOrderNo = merchantOrderNo;
return this;
}
public String getMerchantOrderNo() {
return this.merchantOrderNo;
}
public CreateSnsAppOrderResponseBody setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
}