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 {
// data
@NameInMap("data")
public java.util.List data;
// 当前第几页
@NameInMap("pageNumber")
public Long pageNumber;
// 总数量
@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;
}
}