Details of a request to bulk edit shareable entity.

interface BulkEditShareableEntityResponse {
    action:
        | "changeOwner"
        | "changePermission"
        | "addPermission"
        | "removePermission";
    entityErrors?: {
        [key: string]: BulkEditActionError;
    };
}

Properties

action:
    | "changeOwner"
    | "changePermission"
    | "addPermission"
    | "removePermission"

Allowed action for bulk edit shareable entity

entityErrors?: {
    [key: string]: BulkEditActionError;
}

The mapping dashboard id to errors if any.

Type declaration