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

com.qiniu.storage.model.FetchRet Maven / Gradle / Ivy

There is a newer version: 7.17.0
Show newest version
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