com.aliyun.dingtalkedu_1_0.models.CancelUserOrderRequest 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 CancelUserOrderRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123400
*/
@NameInMap("alipayAppId")
public String alipayAppId;
/**
* This parameter is required.
*
* example:
* 10000
*/
@NameInMap("merchantId")
public String merchantId;
/**
* This parameter is required.
*
* example:
* CM000001
*/
@NameInMap("orderNo")
public String orderNo;
/**
* This parameter is required.
*
* example:
* WWrhziOLF/XuRd3IyKwLkLeSFgKnUfeg2yLEVD9Bw+8
*/
@NameInMap("signature")
public String signature;
/**
* This parameter is required.
*
* example:
* 100000
*/
@NameInMap("timestamp")
public Long timestamp;
public static CancelUserOrderRequest build(java.util.Map map) throws Exception {
CancelUserOrderRequest self = new CancelUserOrderRequest();
return TeaModel.build(map, self);
}
public CancelUserOrderRequest setAlipayAppId(String alipayAppId) {
this.alipayAppId = alipayAppId;
return this;
}
public String getAlipayAppId() {
return this.alipayAppId;
}
public CancelUserOrderRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public CancelUserOrderRequest setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public CancelUserOrderRequest setSignature(String signature) {
this.signature = signature;
return this;
}
public String getSignature() {
return this.signature;
}
public CancelUserOrderRequest setTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
public Long getTimestamp() {
return this.timestamp;
}
}