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

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

There is a newer version: 4.0.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 SearchFileResponseBody extends TeaModel {
    /**
     * 

The information about the files.

*/ @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; /** *

The total number of retrieved files.

* * example: *

1022

*/ @NameInMap("total_count") public Long totalCount; public static SearchFileResponseBody build(java.util.Map map) throws Exception { SearchFileResponseBody self = new SearchFileResponseBody(); return TeaModel.build(map, self); } public SearchFileResponseBody setItems(java.util.List items) { this.items = items; return this; } public java.util.List getItems() { return this.items; } public SearchFileResponseBody setNextMarker(String nextMarker) { this.nextMarker = nextMarker; return this; } public String getNextMarker() { return this.nextMarker; } public SearchFileResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy