Interface PermissionObject

Permission object in response

interface PermissionObject {
    id: string;
    active: boolean;
    org?: string;
    user?: string;
    policy: string;
    tags: string[];
    record_history?: {
        created_at?: string;
        created_by?: string;
        created_by_type?: string;
        updated_at?: string;
        updated_by?: string;
        updated_by_type?: string;
    };
}

Properties

id: string
active: boolean
org?: string
user?: string
policy: string
tags: string[]
record_history?: {
    created_at?: string;
    created_by?: string;
    created_by_type?: string;
    updated_at?: string;
    updated_by?: string;
    updated_by_type?: string;
}