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

com.aliyun.dingtalkbizfinance_1_0.models.CommitConsumeRequest 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_1_0.models;

import com.aliyun.tea.*;

public class CommitConsumeRequest extends TeaModel {
    /**
     * example:
     * 

B_SF2_INVOICE_OCR

*/ @NameInMap("benefitCode") public String benefitCode; @NameInMap("bizRequestId") public String bizRequestId; /** * example: *

1

*/ @NameInMap("quota") public Long quota; @NameInMap("userId") public String userId; public static CommitConsumeRequest build(java.util.Map map) throws Exception { CommitConsumeRequest self = new CommitConsumeRequest(); return TeaModel.build(map, self); } public CommitConsumeRequest setBenefitCode(String benefitCode) { this.benefitCode = benefitCode; return this; } public String getBenefitCode() { return this.benefitCode; } public CommitConsumeRequest setBizRequestId(String bizRequestId) { this.bizRequestId = bizRequestId; return this; } public String getBizRequestId() { return this.bizRequestId; } public CommitConsumeRequest setQuota(Long quota) { this.quota = quota; return this; } public Long getQuota() { return this.quota; } public CommitConsumeRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy