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

com.slack.api.methods.request.conversations.ConversationsApproveSharedInviteRequest 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.approveSharedInvite
 */
@Data
@Builder
public class ConversationsApproveSharedInviteRequest 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;

    /**
     * ID of the shared channel invite to approve
     */
    private String inviteId;

    /**
     * The team or enterprise id of the other party involved in the invitation you are approving
     */
    private String targetTeam;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy