com.aliyun.dingtalkedu_1_0.models.CreateAppOrderResponseBody 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 CreateAppOrderResponseBody 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 CreateAppOrderResponseBody build(java.util.Map map) throws Exception {
CreateAppOrderResponseBody self = new CreateAppOrderResponseBody();
return TeaModel.build(map, self);
}
public CreateAppOrderResponseBody setActualAmount(Long actualAmount) {
this.actualAmount = actualAmount;
return this;
}
public Long getActualAmount() {
return this.actualAmount;
}
public CreateAppOrderResponseBody setAlipayAppId(String alipayAppId) {
this.alipayAppId = alipayAppId;
return this;
}
public String getAlipayAppId() {
return this.alipayAppId;
}
public CreateAppOrderResponseBody setBody(String body) {
this.body = body;
return this;
}
public String getBody() {
return this.body;
}
public CreateAppOrderResponseBody setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public CreateAppOrderResponseBody setMerchantOrderNo(String merchantOrderNo) {
this.merchantOrderNo = merchantOrderNo;
return this;
}
public String getMerchantOrderNo() {
return this.merchantOrderNo;
}
public CreateAppOrderResponseBody setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
}