com.qcloud.cos.model.fetch.PutAsyncFetchTaskResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
package com.qcloud.cos.model.fetch;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@JsonInclude(Include.NON_NULL)
public class PutAsyncFetchTaskResult {
@JsonIgnore
private String cosRequestId;
private String code;
private String message;
private String request_id;
private Map data;
public PutAsyncFetchTaskResult() {};
public void setCosRequestId(String requestId) {
this.cosRequestId = requestId;
}
public String getCosRequestId() {
return this.cosRequestId;
}
public String getCode() {
return this.code;
}
public String getMessage() {
return this.message;
}
public String getRequestId() {
return this.request_id;
}
public Map getData() {
return this.data;
}
}