Interface CreateDialogModel

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

Hierarchy (view full)

Properties

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

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