![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkyida_1_0.models.GetInstanceIdListResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class GetInstanceIdListResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List data;
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 100
*/
@NameInMap("totalCount")
public Long totalCount;
public static GetInstanceIdListResponseBody build(java.util.Map map) throws Exception {
GetInstanceIdListResponseBody self = new GetInstanceIdListResponseBody();
return TeaModel.build(map, self);
}
public GetInstanceIdListResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public GetInstanceIdListResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetInstanceIdListResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy