com.slack.api.methods.request.admin.apps.AdminAppsRestrictRequest Maven / Gradle / Ivy
The 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.restrict
*/
@Data
@Builder
public class AdminAppsRestrictRequest implements SlackApiRequest {
/**
* Authentication token bearing required scopes.
*/
private String token;
/**
* The id of the app to approve.
*/
private String appId;
/**
* The id of the request to approve.
*/
private String requestId;
/**
* The ID of the enterprise to approve the app on
*/
private String enterpriseId;
/**
* The ID of the workspace to approve the app on
*/
private String teamId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy