
com.aliyun.pds20220301.models.ListUserResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class ListUserResponseBody extends TeaModel {
/**
* The information about the users.
*/
@NameInMap("items")
public java.util.List items;
/**
* A pagination token. It can be used in the next request to retrieve a new page of results. If next_marker is empty, no next page exists.
*
* example:
* NWQ1Yjk4YmI1ZDRlYmU1Y2E0YWE0NmJhYWJmODBhNDQ2NzhlMTRhMg
*/
@NameInMap("next_marker")
public String nextMarker;
public static ListUserResponseBody build(java.util.Map map) throws Exception {
ListUserResponseBody self = new ListUserResponseBody();
return TeaModel.build(map, self);
}
public ListUserResponseBody setItems(java.util.List items) {
this.items = items;
return this;
}
public java.util.List getItems() {
return this.items;
}
public ListUserResponseBody setNextMarker(String nextMarker) {
this.nextMarker = nextMarker;
return this;
}
public String getNextMarker() {
return this.nextMarker;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy