com.aliyun.dingtalkrooms_1_0.models.CreateDeviceCustomTemplateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkrooms_1_0.models;
import com.aliyun.tea.*;
public class CreateDeviceCustomTemplateRequest extends TeaModel {
@NameInMap("bgImgList")
public java.util.List bgImgList;
/**
* example:
* 1
*/
@NameInMap("bgType")
public Integer bgType;
/**
* example:
* https://img.alicdn.com/imgextra/i2/O1CN01GWWCCR1y2D9D9EHej_!!6000000006520-2-tps-1920-470.png
*/
@NameInMap("bgUrl")
public String bgUrl;
/**
* example:
* 测试文本
*/
@NameInMap("customDoc")
public String customDoc;
@NameInMap("desensitizeUserName")
public Boolean desensitizeUserName;
@NameInMap("deviceUnionIds")
public java.util.List deviceUnionIds;
@NameInMap("groupIds")
public java.util.List groupIds;
@NameInMap("hideServerCodeWhenProjecting")
public Boolean hideServerCodeWhenProjecting;
@NameInMap("instruction")
public Boolean instruction;
/**
* example:
* 1
*/
@NameInMap("isPicTop")
public Integer isPicTop;
/**
* example:
* logo
*/
@NameInMap("logo")
public String logo;
/**
* example:
* 测试企业
*/
@NameInMap("orgName")
public String orgName;
/**
* example:
* 10
*/
@NameInMap("picturePlayInterval")
public Integer picturePlayInterval;
@NameInMap("roomIds")
public java.util.List roomIds;
@NameInMap("showCalendarCard")
public Boolean showCalendarCard;
@NameInMap("showCalendarTitle")
public Boolean showCalendarTitle;
@NameInMap("showFunctionCard")
public Boolean showFunctionCard;
/**
* This parameter is required.
*
* example:
* 测试模板
*/
@NameInMap("templateName")
public String templateName;
public static CreateDeviceCustomTemplateRequest build(java.util.Map map) throws Exception {
CreateDeviceCustomTemplateRequest self = new CreateDeviceCustomTemplateRequest();
return TeaModel.build(map, self);
}
public CreateDeviceCustomTemplateRequest setBgImgList(java.util.List bgImgList) {
this.bgImgList = bgImgList;
return this;
}
public java.util.List getBgImgList() {
return this.bgImgList;
}
public CreateDeviceCustomTemplateRequest setBgType(Integer bgType) {
this.bgType = bgType;
return this;
}
public Integer getBgType() {
return this.bgType;
}
public CreateDeviceCustomTemplateRequest setBgUrl(String bgUrl) {
this.bgUrl = bgUrl;
return this;
}
public String getBgUrl() {
return this.bgUrl;
}
public CreateDeviceCustomTemplateRequest setCustomDoc(String customDoc) {
this.customDoc = customDoc;
return this;
}
public String getCustomDoc() {
return this.customDoc;
}
public CreateDeviceCustomTemplateRequest setDesensitizeUserName(Boolean desensitizeUserName) {
this.desensitizeUserName = desensitizeUserName;
return this;
}
public Boolean getDesensitizeUserName() {
return this.desensitizeUserName;
}
public CreateDeviceCustomTemplateRequest setDeviceUnionIds(java.util.List deviceUnionIds) {
this.deviceUnionIds = deviceUnionIds;
return this;
}
public java.util.List getDeviceUnionIds() {
return this.deviceUnionIds;
}
public CreateDeviceCustomTemplateRequest setGroupIds(java.util.List groupIds) {
this.groupIds = groupIds;
return this;
}
public java.util.List getGroupIds() {
return this.groupIds;
}
public CreateDeviceCustomTemplateRequest setHideServerCodeWhenProjecting(Boolean hideServerCodeWhenProjecting) {
this.hideServerCodeWhenProjecting = hideServerCodeWhenProjecting;
return this;
}
public Boolean getHideServerCodeWhenProjecting() {
return this.hideServerCodeWhenProjecting;
}
public CreateDeviceCustomTemplateRequest setInstruction(Boolean instruction) {
this.instruction = instruction;
return this;
}
public Boolean getInstruction() {
return this.instruction;
}
public CreateDeviceCustomTemplateRequest setIsPicTop(Integer isPicTop) {
this.isPicTop = isPicTop;
return this;
}
public Integer getIsPicTop() {
return this.isPicTop;
}
public CreateDeviceCustomTemplateRequest setLogo(String logo) {
this.logo = logo;
return this;
}
public String getLogo() {
return this.logo;
}
public CreateDeviceCustomTemplateRequest setOrgName(String orgName) {
this.orgName = orgName;
return this;
}
public String getOrgName() {
return this.orgName;
}
public CreateDeviceCustomTemplateRequest setPicturePlayInterval(Integer picturePlayInterval) {
this.picturePlayInterval = picturePlayInterval;
return this;
}
public Integer getPicturePlayInterval() {
return this.picturePlayInterval;
}
public CreateDeviceCustomTemplateRequest setRoomIds(java.util.List roomIds) {
this.roomIds = roomIds;
return this;
}
public java.util.List getRoomIds() {
return this.roomIds;
}
public CreateDeviceCustomTemplateRequest setShowCalendarCard(Boolean showCalendarCard) {
this.showCalendarCard = showCalendarCard;
return this;
}
public Boolean getShowCalendarCard() {
return this.showCalendarCard;
}
public CreateDeviceCustomTemplateRequest setShowCalendarTitle(Boolean showCalendarTitle) {
this.showCalendarTitle = showCalendarTitle;
return this;
}
public Boolean getShowCalendarTitle() {
return this.showCalendarTitle;
}
public CreateDeviceCustomTemplateRequest setShowFunctionCard(Boolean showFunctionCard) {
this.showFunctionCard = showFunctionCard;
return this;
}
public Boolean getShowFunctionCard() {
return this.showFunctionCard;
}
public CreateDeviceCustomTemplateRequest setTemplateName(String templateName) {
this.templateName = templateName;
return this;
}
public String getTemplateName() {
return this.templateName;
}
}