com.aliyun.dingtalkbizfinance_2_0.models.SyncReceiptRecallRequest 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 SyncReceiptRecallRequest extends TeaModel {
/**
* example:
* https:xxxx.pdf
*/
@NameInMap("fileDownloadUrl")
public String fileDownloadUrl;
/**
* example:
* 1234.pdf
*/
@NameInMap("fileName")
public String fileName;
/**
* example:
* 123
*/
@NameInMap("orderNo")
public String orderNo;
public static SyncReceiptRecallRequest build(java.util.Map map) throws Exception {
SyncReceiptRecallRequest self = new SyncReceiptRecallRequest();
return TeaModel.build(map, self);
}
public SyncReceiptRecallRequest setFileDownloadUrl(String fileDownloadUrl) {
this.fileDownloadUrl = fileDownloadUrl;
return this;
}
public String getFileDownloadUrl() {
return this.fileDownloadUrl;
}
public SyncReceiptRecallRequest setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public SyncReceiptRecallRequest setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
}