Interface IIdentitySelectDialogData

interface IIdentitySelectDialogData {
    filter?: IIdentitySelectFilterOptions;
    identities?: IIdentityOption[];
    limitSelectionToMembersOf?: string | ILimitSelectionToConfig;
    okButtonLabel?: string;
    selection?: IdentitySelection;
    selectionMode: SelectionMode;
    showSelectCurrentUserButton?: boolean;
    title?: string;
}

Properties

identities?: IIdentityOption[]
limitSelectionToMembersOf?: string | ILimitSelectionToConfig
okButtonLabel?: string
selection?: IdentitySelection
selectionMode: SelectionMode
showSelectCurrentUserButton?: boolean
title?: string