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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkim_1_0.models;

import com.aliyun.tea.*;

public class CreateGroupConversationRequest extends TeaModel {
    // C端客户成员列表
    @NameInMap("appUserIds")
    public java.util.List appUserIds;

    // 群头像
    @NameInMap("groupAvatar")
    public String groupAvatar;

    // 群名称
    @NameInMap("groupName")
    public String groupName;

    // 群主钉钉Id
    @NameInMap("groupOwnerId")
    public String groupOwnerId;

    // 群模板
    @NameInMap("groupTemplateId")
    public String groupTemplateId;

    // 操作者的钉钉Id
    @NameInMap("operatorId")
    public String operatorId;

    // B端客服成员列表
    @NameInMap("userIds")
    public java.util.List userIds;

    public static CreateGroupConversationRequest build(java.util.Map map) throws Exception {
        CreateGroupConversationRequest self = new CreateGroupConversationRequest();
        return TeaModel.build(map, self);
    }

    public CreateGroupConversationRequest setAppUserIds(java.util.List appUserIds) {
        this.appUserIds = appUserIds;
        return this;
    }
    public java.util.List getAppUserIds() {
        return this.appUserIds;
    }

    public CreateGroupConversationRequest setGroupAvatar(String groupAvatar) {
        this.groupAvatar = groupAvatar;
        return this;
    }
    public String getGroupAvatar() {
        return this.groupAvatar;
    }

    public CreateGroupConversationRequest setGroupName(String groupName) {
        this.groupName = groupName;
        return this;
    }
    public String getGroupName() {
        return this.groupName;
    }

    public CreateGroupConversationRequest setGroupOwnerId(String groupOwnerId) {
        this.groupOwnerId = groupOwnerId;
        return this;
    }
    public String getGroupOwnerId() {
        return this.groupOwnerId;
    }

    public CreateGroupConversationRequest setGroupTemplateId(String groupTemplateId) {
        this.groupTemplateId = groupTemplateId;
        return this;
    }
    public String getGroupTemplateId() {
        return this.groupTemplateId;
    }

    public CreateGroupConversationRequest setOperatorId(String operatorId) {
        this.operatorId = operatorId;
        return this;
    }
    public String getOperatorId() {
        return this.operatorId;
    }

    public CreateGroupConversationRequest setUserIds(java.util.List userIds) {
        this.userIds = userIds;
        return this;
    }
    public java.util.List getUserIds() {
        return this.userIds;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy