Interface IGetExpObjectDomain

interface IGetExpObjectDomain {
    containerPath?: string;
    failure?: (() => any);
    success: ((domain?: any) => 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.

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.