All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.QueryOrderRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy