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

com.aliyun.dingtalkservice_group_1_0.models.CloseHumanSessionRequest 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 CloseHumanSessionRequest extends TeaModel {
    // 开放会话id
    @NameInMap("openConversationId")
    public String openConversationId;

    // 开放团队id
    @NameInMap("openTeamId")
    public String openTeamId;

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

    public CloseHumanSessionRequest setOpenConversationId(String openConversationId) {
        this.openConversationId = openConversationId;
        return this;
    }
    public String getOpenConversationId() {
        return this.openConversationId;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy