com.aliyun.dingtalkim_1_0.models.ListOrgTextEmotionResponseBody 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 ListOrgTextEmotionResponseBody extends TeaModel {
@NameInMap("result")
public ListOrgTextEmotionResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static ListOrgTextEmotionResponseBody build(java.util.Map map) throws Exception {
ListOrgTextEmotionResponseBody self = new ListOrgTextEmotionResponseBody();
return TeaModel.build(map, self);
}
public ListOrgTextEmotionResponseBody setResult(ListOrgTextEmotionResponseBodyResult result) {
this.result = result;
return this;
}
public ListOrgTextEmotionResponseBodyResult getResult() {
return this.result;
}
public ListOrgTextEmotionResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class ListOrgTextEmotionResponseBodyResultEmotions extends TeaModel {
/**
* example:
* @234xxx
*/
@NameInMap("backgroundMediaId")
public String backgroundMediaId;
/**
* example:
* @123xxx
*/
@NameInMap("backgroundMediaIdForPanel")
public String backgroundMediaIdForPanel;
/**
* example:
* -1
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* corp_131xxx
*/
@NameInMap("emotionId")
public String emotionId;
/**
* example:
* 企业表情1
*/
@NameInMap("emotionName")
public String emotionName;
/**
* example:
* 1
*/
@NameInMap("status")
public Integer status;
public static ListOrgTextEmotionResponseBodyResultEmotions build(java.util.Map map) throws Exception {
ListOrgTextEmotionResponseBodyResultEmotions self = new ListOrgTextEmotionResponseBodyResultEmotions();
return TeaModel.build(map, self);
}
public ListOrgTextEmotionResponseBodyResultEmotions setBackgroundMediaId(String backgroundMediaId) {
this.backgroundMediaId = backgroundMediaId;
return this;
}
public String getBackgroundMediaId() {
return this.backgroundMediaId;
}
public ListOrgTextEmotionResponseBodyResultEmotions setBackgroundMediaIdForPanel(String backgroundMediaIdForPanel) {
this.backgroundMediaIdForPanel = backgroundMediaIdForPanel;
return this;
}
public String getBackgroundMediaIdForPanel() {
return this.backgroundMediaIdForPanel;
}
public ListOrgTextEmotionResponseBodyResultEmotions setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public ListOrgTextEmotionResponseBodyResultEmotions setEmotionId(String emotionId) {
this.emotionId = emotionId;
return this;
}
public String getEmotionId() {
return this.emotionId;
}
public ListOrgTextEmotionResponseBodyResultEmotions setEmotionName(String emotionName) {
this.emotionName = emotionName;
return this;
}
public String getEmotionName() {
return this.emotionName;
}
public ListOrgTextEmotionResponseBodyResultEmotions setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
}
public static class ListOrgTextEmotionResponseBodyResult extends TeaModel {
@NameInMap("emotions")
public java.util.List emotions;
public static ListOrgTextEmotionResponseBodyResult build(java.util.Map map) throws Exception {
ListOrgTextEmotionResponseBodyResult self = new ListOrgTextEmotionResponseBodyResult();
return TeaModel.build(map, self);
}
public ListOrgTextEmotionResponseBodyResult setEmotions(java.util.List emotions) {
this.emotions = emotions;
return this;
}
public java.util.List getEmotions() {
return this.emotions;
}
}
}