/**
 * 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.
 */
/**
 *
 * @export
 * @interface StaticPermission
 */
export interface StaticPermission {
    /**
     * Name of permission
     * @type {string}
     * @memberof StaticPermission
     */
    name: string;
    /**
     * Human readable permission name
     * @type {string}
     * @memberof StaticPermission
     */
    human_readable: string;
    /**
     * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
     * @type {string}
     * @memberof StaticPermission
     */
    hint: string;
    /**
     * List of permissions the role must have before receiving this one
     * @type {Array<string>}
     * @memberof StaticPermission
     */
    required_permissions?: Array<string>;
}
