com.volcengine.model.imagex.v2.GetImageStorageFilesResResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.imagex.v2;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* GetImageStorageFilesResResult
*/
@lombok.Data
public final class GetImageStorageFilesResResult {
/**
* 文件列表
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Items")
private List items;
/**
* 是否还有更多文件,取值如下所示:
*
* - `true`:是,还有文件信息未列出
*
* - `false`:否,已列出所有文件信息
*/
@com.alibaba.fastjson.annotation.JSONField(name = "HasMore")
private Boolean hasMore;
/**
* `HasMore` 取值 `true` 时,即本次查询还有未列举到的文件信息时。`Marker` 作为起始条目位置标记,您需要在下一次列举时传入该值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Marker")
private String marker;
/**
* 返回目录名称的数组集合。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CommonPrefix")
private List commonPrefix;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy