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

com.tencentcloudapi.essbasic.v20210526.models.EmbedUrlOption Maven / Gradle / Ivy

There is a newer version: 3.1.1143
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.essbasic.v20210526.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 EmbedUrlOption extends AbstractModel {

    /**
    * 合同详情预览,允许展示控件信息
  • true:允许在合同详情页展示控件
  • false:(默认)不允许在合同详情页展示控件
*/ @SerializedName("ShowFlowDetailComponent") @Expose private Boolean ShowFlowDetailComponent; /** * 模板预览,允许展示模板控件信息
  • true :允许在模板预览页展示控件
  • false :(默认)不允许在模板预览页展示控件
*/ @SerializedName("ShowTemplateComponent") @Expose private Boolean ShowTemplateComponent; /** * 跳过上传文件,默认为false(展示上传文件页)![image](https://qcloudimg.tencent-cloud.cn/raw/8ca33745cf772e79831dbe5a70e82400.png) - false: 展示上传文件页 - true: 不展示上传文件页 注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**, */ @SerializedName("SkipUploadFile") @Expose private String SkipUploadFile; /** * Get 合同详情预览,允许展示控件信息
  • true:允许在合同详情页展示控件
  • false:(默认)不允许在合同详情页展示控件
* @return ShowFlowDetailComponent 合同详情预览,允许展示控件信息
  • true:允许在合同详情页展示控件
  • false:(默认)不允许在合同详情页展示控件
*/ public Boolean getShowFlowDetailComponent() { return this.ShowFlowDetailComponent; } /** * Set 合同详情预览,允许展示控件信息
  • true:允许在合同详情页展示控件
  • false:(默认)不允许在合同详情页展示控件
* @param ShowFlowDetailComponent 合同详情预览,允许展示控件信息
  • true:允许在合同详情页展示控件
  • false:(默认)不允许在合同详情页展示控件
*/ public void setShowFlowDetailComponent(Boolean ShowFlowDetailComponent) { this.ShowFlowDetailComponent = ShowFlowDetailComponent; } /** * Get 模板预览,允许展示模板控件信息
  • true :允许在模板预览页展示控件
  • false :(默认)不允许在模板预览页展示控件
* @return ShowTemplateComponent 模板预览,允许展示模板控件信息
  • true :允许在模板预览页展示控件
  • false :(默认)不允许在模板预览页展示控件
*/ public Boolean getShowTemplateComponent() { return this.ShowTemplateComponent; } /** * Set 模板预览,允许展示模板控件信息
  • true :允许在模板预览页展示控件
  • false :(默认)不允许在模板预览页展示控件
* @param ShowTemplateComponent 模板预览,允许展示模板控件信息
  • true :允许在模板预览页展示控件
  • false :(默认)不允许在模板预览页展示控件
*/ public void setShowTemplateComponent(Boolean ShowTemplateComponent) { this.ShowTemplateComponent = ShowTemplateComponent; } /** * Get 跳过上传文件,默认为false(展示上传文件页)![image](https://qcloudimg.tencent-cloud.cn/raw/8ca33745cf772e79831dbe5a70e82400.png) - false: 展示上传文件页 - true: 不展示上传文件页 注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**, * @return SkipUploadFile 跳过上传文件,默认为false(展示上传文件页)![image](https://qcloudimg.tencent-cloud.cn/raw/8ca33745cf772e79831dbe5a70e82400.png) - false: 展示上传文件页 - true: 不展示上传文件页 注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**, */ public String getSkipUploadFile() { return this.SkipUploadFile; } /** * Set 跳过上传文件,默认为false(展示上传文件页)![image](https://qcloudimg.tencent-cloud.cn/raw/8ca33745cf772e79831dbe5a70e82400.png) - false: 展示上传文件页 - true: 不展示上传文件页 注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**, * @param SkipUploadFile 跳过上传文件,默认为false(展示上传文件页)![image](https://qcloudimg.tencent-cloud.cn/raw/8ca33745cf772e79831dbe5a70e82400.png) - false: 展示上传文件页 - true: 不展示上传文件页 注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**, */ public void setSkipUploadFile(String SkipUploadFile) { this.SkipUploadFile = SkipUploadFile; } public EmbedUrlOption() { } /** * 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 EmbedUrlOption(EmbedUrlOption source) { if (source.ShowFlowDetailComponent != null) { this.ShowFlowDetailComponent = new Boolean(source.ShowFlowDetailComponent); } if (source.ShowTemplateComponent != null) { this.ShowTemplateComponent = new Boolean(source.ShowTemplateComponent); } if (source.SkipUploadFile != null) { this.SkipUploadFile = new String(source.SkipUploadFile); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "ShowFlowDetailComponent", this.ShowFlowDetailComponent); this.setParamSimple(map, prefix + "ShowTemplateComponent", this.ShowTemplateComponent); this.setParamSimple(map, prefix + "SkipUploadFile", this.SkipUploadFile); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy