com.tencentcloudapi.mps.v20190612.models.ComposeImageOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.mps.v20190612.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ComposeImageOperation extends AbstractModel {
/**
* The type. Valid values:
u200c`Rotate`: Image rotation.
`Flip`: Image flipping.
*/
@SerializedName("Type")
@Expose
private String Type;
/**
* This is valid if `Type` is `Rotate`. The angle of rotation around the image center. Value range: 0–360.
*/
@SerializedName("RotateAngle")
@Expose
private Float RotateAngle;
/**
* This is valid if `Type` is `Flip`. How to flip the image. Valid values:xa0
u200c`Horizental`: Flip horizontally.
`Vertical`: Flip vertically.
*/
@SerializedName("FlipType")
@Expose
private String FlipType;
/**
* Get The type. Valid values:
u200c`Rotate`: Image rotation.
`Flip`: Image flipping.
* @return Type The type. Valid values:
u200c`Rotate`: Image rotation.
`Flip`: Image flipping.
*/
public String getType() {
return this.Type;
}
/**
* Set The type. Valid values:
u200c`Rotate`: Image rotation.
`Flip`: Image flipping.
* @param Type The type. Valid values:
u200c`Rotate`: Image rotation.
`Flip`: Image flipping.
*/
public void setType(String Type) {
this.Type = Type;
}
/**
* Get This is valid if `Type` is `Rotate`. The angle of rotation around the image center. Value range: 0–360.
* @return RotateAngle This is valid if `Type` is `Rotate`. The angle of rotation around the image center. Value range: 0–360.
*/
public Float getRotateAngle() {
return this.RotateAngle;
}
/**
* Set This is valid if `Type` is `Rotate`. The angle of rotation around the image center. Value range: 0–360.
* @param RotateAngle This is valid if `Type` is `Rotate`. The angle of rotation around the image center. Value range: 0–360.
*/
public void setRotateAngle(Float RotateAngle) {
this.RotateAngle = RotateAngle;
}
/**
* Get This is valid if `Type` is `Flip`. How to flip the image. Valid values:xa0
u200c`Horizental`: Flip horizontally.
`Vertical`: Flip vertically.
* @return FlipType This is valid if `Type` is `Flip`. How to flip the image. Valid values:xa0
u200c`Horizental`: Flip horizontally.
`Vertical`: Flip vertically.
*/
public String getFlipType() {
return this.FlipType;
}
/**
* Set This is valid if `Type` is `Flip`. How to flip the image. Valid values:xa0
u200c`Horizental`: Flip horizontally.
`Vertical`: Flip vertically.
* @param FlipType This is valid if `Type` is `Flip`. How to flip the image. Valid values:xa0
u200c`Horizental`: Flip horizontally.
`Vertical`: Flip vertically.
*/
public void setFlipType(String FlipType) {
this.FlipType = FlipType;
}
public ComposeImageOperation() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public ComposeImageOperation(ComposeImageOperation source) {
if (source.Type != null) {
this.Type = new String(source.Type);
}
if (source.RotateAngle != null) {
this.RotateAngle = new Float(source.RotateAngle);
}
if (source.FlipType != null) {
this.FlipType = new String(source.FlipType);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Type", this.Type);
this.setParamSimple(map, prefix + "RotateAngle", this.RotateAngle);
this.setParamSimple(map, prefix + "FlipType", this.FlipType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy