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

com.github.seratch.jslack.api.model.admin.ApprovedApp Maven / Gradle / Ivy

package com.github.seratch.jslack.api.model.admin;

import lombok.Data;

import java.util.List;

@Data
public class ApprovedApp {
    private App app;
    private List scopes;
    private Integer dateUpdated;
    private Actor lastResolvedBy;

    @Data
    public static class Actor {
        private String actorId; // user id
        private String actorType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy