All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkbizfinance_2_0.models.GetReceiptRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_2_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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy