Interface IGetExpObjectDomain

interface IGetExpObjectDomain {
    containerPath?: string;
    failure?: (() => any);
    success: ((domain?) => any);
}

Properties

containerPath?: string

The container path in which the requested Domain is defined. If not supplied, the current container path will be used.

failure?: (() => any)

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

Type declaration

    • (): any
    • Returns any

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