com.aliyun.dingtalkfinance_1_0.models.QueryAcquireRefundOrderRequest 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.dingtalkfinance_1_0.models;
import com.aliyun.tea.*;
public class QueryAcquireRefundOrderRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 202100001
*/
@NameInMap("outRefundNo")
public String outRefundNo;
public static QueryAcquireRefundOrderRequest build(java.util.Map map) throws Exception {
QueryAcquireRefundOrderRequest self = new QueryAcquireRefundOrderRequest();
return TeaModel.build(map, self);
}
public QueryAcquireRefundOrderRequest setOutRefundNo(String outRefundNo) {
this.outRefundNo = outRefundNo;
return this;
}
public String getOutRefundNo() {
return this.outRefundNo;
}
}