/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { StaticPermission } from './static-permission';
/**
 *
 * @export
 * @interface PermissionRelation
 */
export interface PermissionRelation {
    /**
     * The type of resource this permission affects
     * @type {string}
     * @memberof PermissionRelation
     */
    resource_type: string;
    /**
     * Human readable resource name
     * @type {string}
     * @memberof PermissionRelation
     */
    human_readable: string;
    /**
     * List of permissions available for this resource
     * @type {Array<StaticPermission>}
     * @memberof PermissionRelation
     */
    permissions: Array<StaticPermission>;
}
