Type Alias ListableVariable

ListableVariable: {
    account?: number;
    description?: string;
    extra_perms: {
        [key: string]: boolean;
    };
    is_expired?: boolean;
    is_linked?: boolean;
    is_oauth?: boolean;
    is_refreshed?: boolean;
    is_secret: boolean;
    path: string;
    refresh_error?: string;
    value?: string;
    workspace_id: string;
}