
com.aliyun.dingtalkcrm_1_0.models.ConsumeBenefitInventoryRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class ConsumeBenefitInventoryRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* B_ACCOUNT_NUMBER
*/
@NameInMap("benefitCode")
public String benefitCode;
/**
* This parameter is required.
*
* example:
* bizId
*/
@NameInMap("bizRequestId")
public String bizRequestId;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("consumeQuota")
public Long consumeQuota;
/**
* This parameter is required.
*
* example:
* optStaffId
*/
@NameInMap("optUserId")
public String optUserId;
public static ConsumeBenefitInventoryRequest build(java.util.Map map) throws Exception {
ConsumeBenefitInventoryRequest self = new ConsumeBenefitInventoryRequest();
return TeaModel.build(map, self);
}
public ConsumeBenefitInventoryRequest setBenefitCode(String benefitCode) {
this.benefitCode = benefitCode;
return this;
}
public String getBenefitCode() {
return this.benefitCode;
}
public ConsumeBenefitInventoryRequest setBizRequestId(String bizRequestId) {
this.bizRequestId = bizRequestId;
return this;
}
public String getBizRequestId() {
return this.bizRequestId;
}
public ConsumeBenefitInventoryRequest setConsumeQuota(Long consumeQuota) {
this.consumeQuota = consumeQuota;
return this;
}
public Long getConsumeQuota() {
return this.consumeQuota;
}
public ConsumeBenefitInventoryRequest setOptUserId(String optUserId) {
this.optUserId = optUserId;
return this;
}
public String getOptUserId() {
return this.optUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy