
com.aliyun.dingtalkbizfinance_1_0.models.BindCompanyAccountantBookRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class BindCompanyAccountantBookRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* abc
*/
@NameInMap("accountantBookId")
public String accountantBookId;
/**
* example:
* COM_DEFAULT
*/
@NameInMap("companyCode")
public String companyCode;
public static BindCompanyAccountantBookRequest build(java.util.Map map) throws Exception {
BindCompanyAccountantBookRequest self = new BindCompanyAccountantBookRequest();
return TeaModel.build(map, self);
}
public BindCompanyAccountantBookRequest setAccountantBookId(String accountantBookId) {
this.accountantBookId = accountantBookId;
return this;
}
public String getAccountantBookId() {
return this.accountantBookId;
}
public BindCompanyAccountantBookRequest setCompanyCode(String companyCode) {
this.companyCode = companyCode;
return this;
}
public String getCompanyCode() {
return this.companyCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy