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