com.aliyun.dingtalkcrm_1_0.models.QueryBenefitInventoryRequest 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.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class QueryBenefitInventoryRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* B_CUSTOMER_CAPACITY
*/
@NameInMap("benefitCode")
public String benefitCode;
public static QueryBenefitInventoryRequest build(java.util.Map map) throws Exception {
QueryBenefitInventoryRequest self = new QueryBenefitInventoryRequest();
return TeaModel.build(map, self);
}
public QueryBenefitInventoryRequest setBenefitCode(String benefitCode) {
this.benefitCode = benefitCode;
return this;
}
public String getBenefitCode() {
return this.benefitCode;
}
}