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.30
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 {
    // 是否还有更多数据
    @NameInMap("hasMore")
    public Boolean hasMore;

    // resultList
    @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 {
        // 客户Code
        @NameInMap("code")
        public String code;

        // 创建时间(单位MS)
        @NameInMap("createTime")
        public Long createTime;

        // 客户描述
        @NameInMap("description")
        public String description;

        // 客户名称
        @NameInMap("name")
        public String name;

        // 状态:启用(valid), 停用(invalid), 删除(deleted)
        @NameInMap("status")
        public String status;

        // 用户自定义code
        @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 - 2024 Weber Informatics LLC | Privacy Policy