com.qiniu.storage.model.FileInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk-o Show documentation
Show all versions of qiniu-java-sdk-o Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.storage.model;
/**
* list 接口的回复文件对象信息
* 参考文档:资源列举
*/
public final class FileInfo {
/**
* 文件名
*/
public String key;
/**
* 文件hash值
*/
public String hash;
/**
* 文件大小,单位:字节
*/
public long fsize;
/**
* 文件上传时间,单位为:100纳秒
*/
public long putTime;
/**
* 文件的mimeType
*/
public String mimeType;
/**
* 文件上传时设置的endUser
*/
public String endUser;
/**
* 文件的存储类型,0为普通存储,1为低频存储
*/
public int type;
/**
* 文件的状态,0表示启用,1表示禁用
*/
public int status;
/**
* 文件的md5值
*/
public String md5;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy