Interface CreateRelationshipDialogModel<T>

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

Type Parameters

  • T

Hierarchy (view full)

Properties

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

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