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

com.aliyun.pds20220301.models.ListUserResponseBody Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
// 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