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

com.slack.api.methods.request.apps.permissions.users.AppsPermissionsUsersRequestRequest Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * On August 24, 2021, legacy workspace apps were retired. Workspace apps were part of a brief developer preview we elected to not fully release. Since October 2018, existing workspace apps have remained functional but on August 24, 2021 workspace apps will be retired and no longer function.
 * - https://api.slack.com/changelog/2021-03-workspace-apps-to-retire-in-august-2021
 */
@Deprecated
@Data
@Builder
public class AppsPermissionsUsersRequestRequest implements SlackApiRequest {

    private String token;

    /**
     * A comma separated list of user scopes to request for
     */
    private List scopes;

    /**
     * Token used to trigger the request
     */
    private String triggerId;

    /**
     * The user this scope is being requested for
     */
    private String user;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy