All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.vod.v20180717.models.TextWatermarkTemplateInputForUpdate Maven / Gradle / Ivy

There is a newer version: 3.1.1104
Show newest version
/*
 * 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 TextWatermarkTemplateInputForUpdate 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:完全不透明
  • */ @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:完全不透明
  • * @return FontAlpha 文字透明度,取值范围:(0, 1]
  • 0:完全透明
  • 1:完全不透明
  • */ public Float getFontAlpha() { return this.FontAlpha; } /** * Set 文字透明度,取值范围:(0, 1]
  • 0:完全透明
  • 1:完全不透明
  • * @param FontAlpha 文字透明度,取值范围:(0, 1]
  • 0:完全透明
  • 1:完全不透明
  • */ public void setFontAlpha(Float FontAlpha) { this.FontAlpha = FontAlpha; } public TextWatermarkTemplateInputForUpdate() { } /** * 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 TextWatermarkTemplateInputForUpdate(TextWatermarkTemplateInputForUpdate source) { if (source.FontType != null) { this.FontType = new String(source.FontType); } if (source.FontSize != null) { this.FontSize = new String(source.FontSize); } if (source.FontColor != null) { this.FontColor = new String(source.FontColor); } if (source.FontAlpha != null) { this.FontAlpha = new Float(source.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); } }




    © 2015 - 2024 Weber Informatics LLC | Privacy Policy