com.qiniu.storage.model.BatchOpData 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;
/**
* 该类封装了batch接口回复中的data部分
* 参考文档:批量操作
*/
public class BatchOpData {
//batch stat结果
public long fsize;
public String hash;
public String mimeType;
public long putTime;
//batch stat, move, copy, delete, chgm 遇到错误时才有值
public String error;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy