All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkim_1_0.models.AddOrgTextEmotionRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy