interface GetActorOptions {
    actors: Actor[];
    document: boolean;
    filterFunc: any;
    ownership: string | number;
    selected: string;
    type: string;
}

Hierarchy

  • ActorSelectorOptions
    • GetActorOptions

Properties

actors: Actor[]

Actor list to choose from

document: boolean

Return document. If false, return document ID.

filterFunc: any

Filtering callback function

ownership: string | number

Minimum Ownership level.

CONST.DOCUMENT_OWNERSHIP_LEVELS.LIMITED

selected: string

Pre-selected actor ID.

type: string

Basic filter for actor type, unused if filterFunc is provided.