com.aliyun.dingtalkbizfinance_1_0.models.QueryBenefitRequest 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 QueryBenefitRequest extends TeaModel {
/**
* example:
* B_SF2_INVOICE_CHECK_V2
*/
@NameInMap("benefitCode")
public String benefitCode;
public static QueryBenefitRequest build(java.util.Map map) throws Exception {
QueryBenefitRequest self = new QueryBenefitRequest();
return TeaModel.build(map, self);
}
public QueryBenefitRequest setBenefitCode(String benefitCode) {
this.benefitCode = benefitCode;
return this;
}
public String getBenefitCode() {
return this.benefitCode;
}
}