Interface ICreateDataClassDomain

interface ICreateDataClassDomain {
    containerPath?: string;
    domainDesign: DomainDesign;
    failure?: (() => any);
    options?: any;
    success: ((domain?) => any);
}

Properties

containerPath?: string

The container path in which to create the domain.

domainDesign: DomainDesign

The domain design to save.

failure?: (() => any)

Function called if execution of the "getDomainDetails" function fails.

Type declaration

    • (): any
    • Returns any

options?: any

Set of extra options used when creating the SampleSet.

success: ((domain?) => any)

Function called if the "getDomainDetails" function executes successfully. Will be called with the domain object as returned by getDomainDetails which describes the fields of a domain.

Type declaration

    • (domain?): any
    • Parameters

      • Optional domain: any

      Returns any

Generated using TypeDoc