com.aliyun.pds20220301.models.ListGroupMemberResponseBody 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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class ListGroupMemberResponseBody extends TeaModel {
/**
* The information about the groups.
*/
@NameInMap("group_items")
public java.util.List groupItems;
/**
* 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:
* NWQ1Yjk4YmI1ZDRlYmU1Y2E0YWE0NmJhYWJmODBhNDQ2NzhlMTRhM1
*/
@NameInMap("next_marker")
public String nextMarker;
/**
* The information about the users.
*/
@NameInMap("user_items")
public java.util.List userItems;
public static ListGroupMemberResponseBody build(java.util.Map map) throws Exception {
ListGroupMemberResponseBody self = new ListGroupMemberResponseBody();
return TeaModel.build(map, self);
}
public ListGroupMemberResponseBody setGroupItems(java.util.List groupItems) {
this.groupItems = groupItems;
return this;
}
public java.util.List getGroupItems() {
return this.groupItems;
}
public ListGroupMemberResponseBody setNextMarker(String nextMarker) {
this.nextMarker = nextMarker;
return this;
}
public String getNextMarker() {
return this.nextMarker;
}
public ListGroupMemberResponseBody setUserItems(java.util.List userItems) {
this.userItems = userItems;
return this;
}
public java.util.List getUserItems() {
return this.userItems;
}
}