com.qcloud.cos.model.fetch.GetAsyncFetchTaskRequest 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 com.qcloud.cos.internal.CosServiceRequest;
public class GetAsyncFetchTaskRequest extends CosServiceRequest {
private String bucketName;
private String taskId;
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
public String getBucketName() {
return this.bucketName;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getTaskId() {
return this.taskId;
}
}