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

com.aliyun.dingtalkconnector_1_0.models.PullDataByPageResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkconnector_1_0.models;

import com.aliyun.tea.*;

public class PullDataByPageResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("list") public java.util.List list; @NameInMap("maxResults") public Long maxResults; @NameInMap("nextToken") public String nextToken; public static PullDataByPageResponseBody build(java.util.Map map) throws Exception { PullDataByPageResponseBody self = new PullDataByPageResponseBody(); return TeaModel.build(map, self); } public PullDataByPageResponseBody setList(java.util.List list) { this.list = list; return this; } public java.util.List getList() { return this.list; } public PullDataByPageResponseBody setMaxResults(Long maxResults) { this.maxResults = maxResults; return this; } public Long getMaxResults() { return this.maxResults; } public PullDataByPageResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public static class PullDataByPageResponseBodyList extends TeaModel { /** *

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

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

This parameter is required.

*/ @NameInMap("jsonData") public String jsonData; public static PullDataByPageResponseBodyList build(java.util.Map map) throws Exception { PullDataByPageResponseBodyList self = new PullDataByPageResponseBodyList(); return TeaModel.build(map, self); } public PullDataByPageResponseBodyList setDataCreateAppId(String dataCreateAppId) { this.dataCreateAppId = dataCreateAppId; return this; } public String getDataCreateAppId() { return this.dataCreateAppId; } public PullDataByPageResponseBodyList setDataCreateAppType(String dataCreateAppType) { this.dataCreateAppType = dataCreateAppType; return this; } public String getDataCreateAppType() { return this.dataCreateAppType; } public PullDataByPageResponseBodyList setDataGmtCreate(Long dataGmtCreate) { this.dataGmtCreate = dataGmtCreate; return this; } public Long getDataGmtCreate() { return this.dataGmtCreate; } public PullDataByPageResponseBodyList setDataGmtModified(Long dataGmtModified) { this.dataGmtModified = dataGmtModified; return this; } public Long getDataGmtModified() { return this.dataGmtModified; } public PullDataByPageResponseBodyList setDataModifiedAppId(String dataModifiedAppId) { this.dataModifiedAppId = dataModifiedAppId; return this; } public String getDataModifiedAppId() { return this.dataModifiedAppId; } public PullDataByPageResponseBodyList setDataModifiedAppType(String dataModifiedAppType) { this.dataModifiedAppType = dataModifiedAppType; return this; } public String getDataModifiedAppType() { return this.dataModifiedAppType; } public PullDataByPageResponseBodyList setJsonData(String jsonData) { this.jsonData = jsonData; return this; } public String getJsonData() { return this.jsonData; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy