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

com.slack.api.methods.request.admin.conversations.ekm.AdminConversationsEkmListOriginalConnectedChannelInfoRequest Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * https://api.slack.com/methods/admin.conversations.ekm.listOriginalConnectedChannelInfo
 */
@Data
@Builder
public class AdminConversationsEkmListOriginalConnectedChannelInfoRequest implements SlackApiRequest {

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

    /**
     * A comma-separated list of channels to filter to.
     */
    private List channelIds;

    /**
     * Set cursor to next_cursor returned by the previous call to list items in the next page.
     */
    private String cursor;

    /**
     * Maximum number of items to be returned. Must be between 1 - 1000 both inclusive.
     * Default: 100
     */
    private Integer limit;

    /**
     * A comma-separated list of the workspaces to which the channels you would like returned belong.
     */
    private List teamIds;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy