com.aliyun.pds20220301.models.SearchFileResponseBody 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 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;
}
}