/**
 * 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 RoleRelation
 */
export interface RoleRelation {
    /**
     * The unique ID of the given role
     * @type {number}
     * @memberof RoleRelation
     */
    id: number;
    /**
     * The name of the given role
     * @type {string}
     * @memberof RoleRelation
     */
    name: string;
    /**
     * Description of this role
     * @type {string}
     * @memberof RoleRelation
     */
    description: string;
    /**
     * The ID of the project this role belongs to
     * @type {number}
     * @memberof RoleRelation
     */
    project_id: number | null;
    /**
     * Defines if the role is predefined or a custom role for specific project
     * @type {boolean}
     * @memberof RoleRelation
     */
    is_predefined: boolean;
    /**
     * The list of permissions granted for this role
     * @type {Array<string>}
     * @memberof RoleRelation
     */
    permissions: Array<string>;
    /**
     * The date and time when the record was created
     * @type {string}
     * @memberof RoleRelation
     */
    created_at: string;
    /**
     * The date and time when the record was last updated
     * @type {string}
     * @memberof RoleRelation
     */
    updated_at: string;
}
