com.aliyun.dingtalkedu_1_0.models.QueryOrderRequest 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 QueryOrderRequest 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 QueryOrderRequest build(java.util.Map map) throws Exception {
QueryOrderRequest self = new QueryOrderRequest();
return TeaModel.build(map, self);
}
public QueryOrderRequest setAlipayAppId(String alipayAppId) {
this.alipayAppId = alipayAppId;
return this;
}
public String getAlipayAppId() {
return this.alipayAppId;
}
public QueryOrderRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public QueryOrderRequest setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public QueryOrderRequest setSignature(String signature) {
this.signature = signature;
return this;
}
public String getSignature() {
return this.signature;
}
}