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

com.slack.api.methods.request.conversations.ConversationsListConnectInvitesRequest Maven / Gradle / Ivy

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

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

/**
 * https://api.slack.com/methods/conversations.listConnectInvites
 */
@Data
@Builder
public class ConversationsListConnectInvitesRequest implements SlackApiRequest {

    /**
     * Authentication token bearing required scopes.
     * Tokens should be passed as an HTTP Authorization header or alternatively, as a POST parameter.
     */
    private String token;

    /**
     * Maximum number of invites to return
     * Default: 100
     */
    private Integer count;

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

    /**
     * Encoded team id for the workspace to retrieve invites for, required if org token is used
     */
    private String teamId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy