com.tencentcloudapi.vod.v20180717.models.TextWatermarkTemplateInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-vod Show documentation
Show all versions of tencentcloud-sdk-java-vod Show documentation
Tencent Cloud Open 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.vod.v20180717.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class TextWatermarkTemplateInput extends AbstractModel{
/**
* 字体类型,目前可以支持两种:
simkai.ttf:可以支持中文和英文;
arial.ttf:仅支持英文。
*/
@SerializedName("FontType")
@Expose
private String FontType;
/**
* 字体大小,格式:Npx,N 为数值。
*/
@SerializedName("FontSize")
@Expose
private String FontSize;
/**
* 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
*/
@SerializedName("FontColor")
@Expose
private String FontColor;
/**
* 文字透明度,取值范围:(0, 1]
0:完全透明
1:完全不透明
默认值:1。
*/
@SerializedName("FontAlpha")
@Expose
private Float FontAlpha;
/**
* Get 字体类型,目前可以支持两种:
simkai.ttf:可以支持中文和英文;
arial.ttf:仅支持英文。
* @return FontType 字体类型,目前可以支持两种:
simkai.ttf:可以支持中文和英文;
arial.ttf:仅支持英文。
*/
public String getFontType() {
return this.FontType;
}
/**
* Set 字体类型,目前可以支持两种:
simkai.ttf:可以支持中文和英文;
arial.ttf:仅支持英文。
* @param FontType 字体类型,目前可以支持两种:
simkai.ttf:可以支持中文和英文;
arial.ttf:仅支持英文。
*/
public void setFontType(String FontType) {
this.FontType = FontType;
}
/**
* Get 字体大小,格式:Npx,N 为数值。
* @return FontSize 字体大小,格式:Npx,N 为数值。
*/
public String getFontSize() {
return this.FontSize;
}
/**
* Set 字体大小,格式:Npx,N 为数值。
* @param FontSize 字体大小,格式:Npx,N 为数值。
*/
public void setFontSize(String FontSize) {
this.FontSize = FontSize;
}
/**
* Get 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
* @return FontColor 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
*/
public String getFontColor() {
return this.FontColor;
}
/**
* Set 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
* @param FontColor 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
*/
public void setFontColor(String FontColor) {
this.FontColor = FontColor;
}
/**
* Get 文字透明度,取值范围:(0, 1]
0:完全透明
1:完全不透明
默认值:1。
* @return FontAlpha 文字透明度,取值范围:(0, 1]
0:完全透明
1:完全不透明
默认值:1。
*/
public Float getFontAlpha() {
return this.FontAlpha;
}
/**
* Set 文字透明度,取值范围:(0, 1]
0:完全透明
1:完全不透明
默认值:1。
* @param FontAlpha 文字透明度,取值范围:(0, 1]
0:完全透明
1:完全不透明
默认值:1。
*/
public void setFontAlpha(Float FontAlpha) {
this.FontAlpha = FontAlpha;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "FontType", this.FontType);
this.setParamSimple(map, prefix + "FontSize", this.FontSize);
this.setParamSimple(map, prefix + "FontColor", this.FontColor);
this.setParamSimple(map, prefix + "FontAlpha", this.FontAlpha);
}
}