com.aliyun.dingtalkbizfinance_1_0.models.GetReceiptRequest 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_1_0.models;
import com.aliyun.tea.*;
public class GetReceiptRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 19b98a1c-5a31-4d78-9da7-0e347593820a
*/
@NameInMap("code")
public String code;
/**
* This parameter is required.
*
* example:
* EM-1017F28E03350B1738B3000X
*/
@NameInMap("modelId")
public String modelId;
public static GetReceiptRequest build(java.util.Map map) throws Exception {
GetReceiptRequest self = new GetReceiptRequest();
return TeaModel.build(map, self);
}
public GetReceiptRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public GetReceiptRequest setModelId(String modelId) {
this.modelId = modelId;
return this;
}
public String getModelId() {
return this.modelId;
}
}