![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkattendance_1_0.models.SaveCustomWaterMarkTemplateRequest Maven / Gradle / Ivy
Show all versions of dingtalk Show documentation
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class SaveCustomWaterMarkTemplateRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* water_mark_checkin
*/
@NameInMap("bizCode")
public String bizCode;
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("icon")
public String icon;
/**
* This parameter is required.
*
* example:
* industry_dx_xx
*/
@NameInMap("layoutDesignId")
public String layoutDesignId;
/**
* This parameter is required.
*
* example:
* water_mark_checkin_open
*/
@NameInMap("sceneCode")
public String sceneCode;
/**
* This parameter is required.
*
* example:
* { "items":[ { "componentName":"HiddenField", "props":{ "bizAlias":"enableModifyPlace", "id":"enableModifyPlace-undefined", "value":"true" } }, { "componentName":"HiddenField", "props":{ "bizAlias":"modifyPlaceDistance", "id":"modifyPlaceDistance-undefined", "value":200 } }, { "componentName":"HiddenField", "props":{ "bizAlias":"title", "id":"title-undefined", "value":"wofu1" } }, { "componentName":"HiddenField", "props":{ "bizAlias":"titleBgColor", "id":"titleBgColor-undefined", "value":"#0089FF" } } ] }
*/
@NameInMap("schemaContent")
public String schemaContent;
/**
* This parameter is required.
*
* example:
* 标题
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* 1234567
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*
* example:
* manage123
*/
@NameInMap("userId")
public String userId;
public static SaveCustomWaterMarkTemplateRequest build(java.util.Map map) throws Exception {
SaveCustomWaterMarkTemplateRequest self = new SaveCustomWaterMarkTemplateRequest();
return TeaModel.build(map, self);
}
public SaveCustomWaterMarkTemplateRequest setBizCode(String bizCode) {
this.bizCode = bizCode;
return this;
}
public String getBizCode() {
return this.bizCode;
}
public SaveCustomWaterMarkTemplateRequest setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public SaveCustomWaterMarkTemplateRequest setLayoutDesignId(String layoutDesignId) {
this.layoutDesignId = layoutDesignId;
return this;
}
public String getLayoutDesignId() {
return this.layoutDesignId;
}
public SaveCustomWaterMarkTemplateRequest setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
return this;
}
public String getSceneCode() {
return this.sceneCode;
}
public SaveCustomWaterMarkTemplateRequest setSchemaContent(String schemaContent) {
this.schemaContent = schemaContent;
return this;
}
public String getSchemaContent() {
return this.schemaContent;
}
public SaveCustomWaterMarkTemplateRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public SaveCustomWaterMarkTemplateRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public SaveCustomWaterMarkTemplateRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}