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

com.slack.api.methods.request.admin.apps.AdminAppsApprovedListRequest Maven / Gradle / Ivy

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

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

/**
 * https://api.slack.com/methods/admin.apps.approved.list
 */
@Data
@Builder
public class AdminAppsApprovedListRequest implements SlackApiRequest {

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

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

    /**
     * The maximum number of items to return. Must be between 1 - 1000 both inclusive.
     */
    private Integer limit;

    /**
     * Org Id.
     * 

* Note: enterprise_id and team_id cannot be used together. * Passing enterprise_id will return the list of org-wide approved apps. * Passing team_id will return the apps approved for that specific workspace. */ private String enterpriseId; /** * Workspace Id. *

* Note: enterprise_id and team_id cannot be used together. * Passing enterprise_id will return the list of org-wide approved apps. * Passing team_id will return the apps approved for that specific workspace. */ private String teamId; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy