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

com.slack.api.model.event.UserResourceGrantedEvent Maven / Gradle / Ivy

There is a newer version: 1.44.1
Show newest version
package com.slack.api.model.event;

import lombok.Data;

import java.util.List;

/**
 * We send this event when a user grants your workspace app
 * the permissions you recently requested with apps.permissions.users.request.
 * Now you can work on their behalf!
 * 

* https://api.slack.com/events/user_resource_granted */ @Data public class UserResourceGrantedEvent implements Event { public static final String TYPE_NAME = "user_resource_granted"; private final String type = TYPE_NAME; private String user; private List scopes; private String triggerId; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy