com.aliyun.dingtalkfinance_1_0.models.QueryBatchTradeOrderRequest 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 QueryBatchTradeOrderRequest extends TeaModel {
// 外部商户批次号列表
@NameInMap("outBatchNos")
public java.util.List outBatchNos;
public static QueryBatchTradeOrderRequest build(java.util.Map map) throws Exception {
QueryBatchTradeOrderRequest self = new QueryBatchTradeOrderRequest();
return TeaModel.build(map, self);
}
public QueryBatchTradeOrderRequest setOutBatchNos(java.util.List outBatchNos) {
this.outBatchNos = outBatchNos;
return this;
}
public java.util.List getOutBatchNos() {
return this.outBatchNos;
}
}