com.qiniu.storage.model.FetchRet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.storage.model;
/**
* fetch 接口的回复对象
* 参考文档:资源抓取
*/
public class FetchRet {
/**
* 抓取后保存到空间文件名
*/
public String key;
/**
* 抓取后保存到空间的文件hash值
*/
public String hash;
/**
* 抓取后保存到空间的文件的mimeType
*/
public String mimeType;
/**
* 抓取后保存到空间的文件的大小,单位:字节
*/
public long fsize;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy