@labkey/api
    Preparing search index...

    Interface ICreateDataClassDomain

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

    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.

    options?: any

    Set of extra options used when creating the SampleSet.

    success: (domain?: any) => 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.