com.aliyun.dingtalkbizfinance_2_0.models.BatchDeleteReceiptRequest 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.dingtalkbizfinance_2_0.models;
import com.aliyun.tea.*;
public class BatchDeleteReceiptRequest extends TeaModel {
@NameInMap("instanceIdList")
public java.util.List instanceIdList;
/**
* example:
* 504XX
*/
@NameInMap("operator")
public String operator;
public static BatchDeleteReceiptRequest build(java.util.Map map) throws Exception {
BatchDeleteReceiptRequest self = new BatchDeleteReceiptRequest();
return TeaModel.build(map, self);
}
public BatchDeleteReceiptRequest setInstanceIdList(java.util.List instanceIdList) {
this.instanceIdList = instanceIdList;
return this;
}
public java.util.List getInstanceIdList() {
return this.instanceIdList;
}
public BatchDeleteReceiptRequest setOperator(String operator) {
this.operator = operator;
return this;
}
public String getOperator() {
return this.operator;
}
}