com.aliyun.dingtalkim_1_0.models.AddOrgTextEmotionRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class AddOrgTextEmotionRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* @123xxx
*/
@NameInMap("backgroundMediaId")
public String backgroundMediaId;
/**
* This parameter is required.
*
* example:
* @345xxx
*/
@NameInMap("backgroundMediaIdForPanel")
public String backgroundMediaIdForPanel;
/**
* This parameter is required.
*
* example:
* -1
*/
@NameInMap("deptId")
public Long deptId;
/**
* This parameter is required.
*
* example:
* 企业表情1
*/
@NameInMap("emotionName")
public String emotionName;
public static AddOrgTextEmotionRequest build(java.util.Map map) throws Exception {
AddOrgTextEmotionRequest self = new AddOrgTextEmotionRequest();
return TeaModel.build(map, self);
}
public AddOrgTextEmotionRequest setBackgroundMediaId(String backgroundMediaId) {
this.backgroundMediaId = backgroundMediaId;
return this;
}
public String getBackgroundMediaId() {
return this.backgroundMediaId;
}
public AddOrgTextEmotionRequest setBackgroundMediaIdForPanel(String backgroundMediaIdForPanel) {
this.backgroundMediaIdForPanel = backgroundMediaIdForPanel;
return this;
}
public String getBackgroundMediaIdForPanel() {
return this.backgroundMediaIdForPanel;
}
public AddOrgTextEmotionRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public AddOrgTextEmotionRequest setEmotionName(String emotionName) {
this.emotionName = emotionName;
return this;
}
public String getEmotionName() {
return this.emotionName;
}
}