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

com.aliyun.dingtalkservice_group_1_0.models.ConversationTransferBeginNotifyRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class ConversationTransferBeginNotifyRequest extends TeaModel {
    // DT端会话ID
    @NameInMap("conversationId")
    public String conversationId;

    // 转接备注
    @NameInMap("memo")
    public String memo;

    // 团队ID
    @NameInMap("openTeamId")
    public String openTeamId;

    // 对应外部渠道的会话ID
    @NameInMap("serviceToken")
    public String serviceToken;

    // 原始技能组ID
    @NameInMap("sourceSkillGroupId")
    public String sourceSkillGroupId;

    // 目标技能组ID
    @NameInMap("targetSkillGroupId")
    public String targetSkillGroupId;

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

    public ConversationTransferBeginNotifyRequest setConversationId(String conversationId) {
        this.conversationId = conversationId;
        return this;
    }
    public String getConversationId() {
        return this.conversationId;
    }

    public ConversationTransferBeginNotifyRequest setMemo(String memo) {
        this.memo = memo;
        return this;
    }
    public String getMemo() {
        return this.memo;
    }

    public ConversationTransferBeginNotifyRequest setOpenTeamId(String openTeamId) {
        this.openTeamId = openTeamId;
        return this;
    }
    public String getOpenTeamId() {
        return this.openTeamId;
    }

    public ConversationTransferBeginNotifyRequest setServiceToken(String serviceToken) {
        this.serviceToken = serviceToken;
        return this;
    }
    public String getServiceToken() {
        return this.serviceToken;
    }

    public ConversationTransferBeginNotifyRequest setSourceSkillGroupId(String sourceSkillGroupId) {
        this.sourceSkillGroupId = sourceSkillGroupId;
        return this;
    }
    public String getSourceSkillGroupId() {
        return this.sourceSkillGroupId;
    }

    public ConversationTransferBeginNotifyRequest setTargetSkillGroupId(String targetSkillGroupId) {
        this.targetSkillGroupId = targetSkillGroupId;
        return this;
    }
    public String getTargetSkillGroupId() {
        return this.targetSkillGroupId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy