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

com.aliyun.dingtalkjzcrm_1_0.models.GetDataListResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkjzcrm_1_0.models;

import com.aliyun.tea.*;

public class GetDataListResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("data") public java.util.List data; /** *

This parameter is required.

*/ @NameInMap("dataname") public java.util.Map dataname; /** *

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

*/ @NameInMap("totalCount") public Long totalCount; public static GetDataListResponseBody build(java.util.Map map) throws Exception { GetDataListResponseBody self = new GetDataListResponseBody(); return TeaModel.build(map, self); } public GetDataListResponseBody setData(java.util.List data) { this.data = data; return this; } public java.util.List getData() { return this.data; } public GetDataListResponseBody setDataname(java.util.Map dataname) { this.dataname = dataname; return this; } public java.util.Map getDataname() { return this.dataname; } public GetDataListResponseBody setPage(Long page) { this.page = page; return this; } public Long getPage() { return this.page; } public GetDataListResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public GetDataListResponseBody setTime(String time) { this.time = time; return this; } public String getTime() { return this.time; } public GetDataListResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class GetDataListResponseBodyData extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("detail") public java.util.Map detail; public static GetDataListResponseBodyData build(java.util.Map map) throws Exception { GetDataListResponseBodyData self = new GetDataListResponseBodyData(); return TeaModel.build(map, self); } public GetDataListResponseBodyData setDetail(java.util.Map detail) { this.detail = detail; return this; } public java.util.Map getDetail() { return this.detail; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy