![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkim_1_0.models.DeleteOrgTextEmotionRequest 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 DeleteOrgTextEmotionRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* -1
*/
@NameInMap("deptId")
public Long deptId;
/**
* This parameter is required.
*/
@NameInMap("emotionIds")
public java.util.List emotionIds;
public static DeleteOrgTextEmotionRequest build(java.util.Map map) throws Exception {
DeleteOrgTextEmotionRequest self = new DeleteOrgTextEmotionRequest();
return TeaModel.build(map, self);
}
public DeleteOrgTextEmotionRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public DeleteOrgTextEmotionRequest setEmotionIds(java.util.List emotionIds) {
this.emotionIds = emotionIds;
return this;
}
public java.util.List getEmotionIds() {
return this.emotionIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy