All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkbizfinance_1_0.models.GetCustomerResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;

import com.aliyun.tea.*;

public class GetCustomerResponseBody extends TeaModel {
    @NameInMap("accountantBookIdList")
    public java.util.List accountantBookIdList;

    /**
     * 

This parameter is required.

* * example: *

CUS_XXXX

*/ @NameInMap("code") public String code; /** *

This parameter is required.

* * example: *

1634786828686

*/ @NameInMap("createTime") public Long createTime; /** *

This parameter is required.

* * example: *

重要客户

*/ @NameInMap("description") public String description; /** *

This parameter is required.

* * example: *

XX有限公司

*/ @NameInMap("name") public String name; /** *

This parameter is required.

* * example: *

valid

*/ @NameInMap("status") public String status; @NameInMap("userDefineCode") public String userDefineCode; public static GetCustomerResponseBody build(java.util.Map map) throws Exception { GetCustomerResponseBody self = new GetCustomerResponseBody(); return TeaModel.build(map, self); } public GetCustomerResponseBody setAccountantBookIdList(java.util.List accountantBookIdList) { this.accountantBookIdList = accountantBookIdList; return this; } public java.util.List getAccountantBookIdList() { return this.accountantBookIdList; } public GetCustomerResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public GetCustomerResponseBody setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } public GetCustomerResponseBody setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public GetCustomerResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetCustomerResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetCustomerResponseBody setUserDefineCode(String userDefineCode) { this.userDefineCode = userDefineCode; return this; } public String getUserDefineCode() { return this.userDefineCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy