com.qcloud.cos.model.ciModel.image.ImageStyleResponse Maven / Gradle / Ivy
The newest version!
package com.qcloud.cos.model.ciModel.image;
import com.qcloud.cos.internal.CIPicServiceRequest;
import java.util.ArrayList;
import java.util.List;
public class ImageStyleResponse extends CIPicServiceRequest {
/**
* bucket信息
*/
private String bucketName;
/**
* 样式规则
*/
private List styleRule;
public String getBucketName() {
return bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
public List getStyleRule() {
if (styleRule == null) {
styleRule = new ArrayList<>();
}
return styleRule;
}
public void setStyleRule(List styleRule) {
this.styleRule = styleRule;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy