
com.aliyun.oss.model.PutImageStyleRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-sdk-oss Show documentation
Show all versions of aliyun-sdk-oss Show documentation
The Aliyun OSS SDK for Java used for accessing Aliyun Object Storage Service
package com.aliyun.oss.model;
public class PutImageStyleRequest extends GenericRequest {
private String bucketName;
private String styleName;
private String style;
public void SetBucketName(String bucketName) {
this.bucketName = bucketName;
}
public String GetBucketName() {
return this.bucketName;
}
public void SetStyleName(String styleName) {
this.styleName = styleName;
}
public String GetStyleName() {
return this.styleName;
}
public void SetStyle(String style) {
this.style = style;
}
public String GetStyle() {
return this.style;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy