com.aliyun.dingtalkbizfinance_1_0.models.GetFinanceAccountRequest 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 GetFinanceAccountRequest extends TeaModel {
// 账户code
@NameInMap("accountCode")
public String accountCode;
public static GetFinanceAccountRequest build(java.util.Map map) throws Exception {
GetFinanceAccountRequest self = new GetFinanceAccountRequest();
return TeaModel.build(map, self);
}
public GetFinanceAccountRequest setAccountCode(String accountCode) {
this.accountCode = accountCode;
return this;
}
public String getAccountCode() {
return this.accountCode;
}
}