Interface SearchAndCreateDialogModel

interface SearchAndCreateDialogModel {
    entityLabel: string;
    entityName: string;
    linkReasons?: Relationship[];
    onClose?: ((result?: SearchAndCreateResponse) => Promise<boolean>);
    relateToParentLabel: string;
    relateToParentName: string;
    result?: SearchAndCreateResponse;
}

Hierarchy (view full)

Properties

entityLabel: string
entityName: string
linkReasons?: Relationship[]
onClose?: ((result?: SearchAndCreateResponse) => Promise<boolean>)
relateToParentLabel: string
relateToParentName: string

Values returned on the close of the dialog box. May be undefined when dialog box is cancelled.