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

com.slack.api.methods.request.admin.conversations.whitelist.AdminConversationsWhitelistListGroupsLinkedToChannelRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.request.admin.conversations.whitelist;

import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;

/**
 * https://api.slack.com/methods/admin.conversations.whitelist.listGroupsLinkedToChannel
 */
@Deprecated
@Data
@Builder
public class AdminConversationsWhitelistListGroupsLinkedToChannelRequest implements SlackApiRequest {

    /**
     * Authentication token bearing required scopes.
     */
    private String token;

    private String channelId;

    /**
     * The workspace where the channel exists.
     * This argument is required for channels only tied to one workspace,
     * and optional for channels that are shared across an organization.
     */
    private String teamId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy