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

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

There is a newer version: 2.1.88
Show 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 QueryCustomerByPageResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

true

*/ @NameInMap("hasMore") public Boolean hasMore; /** *

This parameter is required.

*/ @NameInMap("list") public java.util.List list; public static QueryCustomerByPageResponseBody build(java.util.Map map) throws Exception { QueryCustomerByPageResponseBody self = new QueryCustomerByPageResponseBody(); return TeaModel.build(map, self); } public QueryCustomerByPageResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public QueryCustomerByPageResponseBody setList(java.util.List list) { this.list = list; return this; } public java.util.List getList() { return this.list; } public static class QueryCustomerByPageResponseBodyList extends TeaModel { /** *

This parameter is required.

* * example: *

CUS_XXX

*/ @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 QueryCustomerByPageResponseBodyList build(java.util.Map map) throws Exception { QueryCustomerByPageResponseBodyList self = new QueryCustomerByPageResponseBodyList(); return TeaModel.build(map, self); } public QueryCustomerByPageResponseBodyList setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public QueryCustomerByPageResponseBodyList setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } public QueryCustomerByPageResponseBodyList setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public QueryCustomerByPageResponseBodyList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryCustomerByPageResponseBodyList setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public QueryCustomerByPageResponseBodyList setUserDefineCode(String userDefineCode) { this.userDefineCode = userDefineCode; return this; } public String getUserDefineCode() { return this.userDefineCode; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy