Interface ListDomainsOptions

interface ListDomainsOptions {
    containerPath?: string;
    domainKinds?: string[];
    failure?: RequestFailure<any>;
    includeFields?: boolean;
    includeProjectAndShared?: boolean;
    scope?: any;
    success?: RequestSuccess<ListDomainsResponse>;
}

Hierarchy (view full)

Properties

containerPath?: string
domainKinds?: string[]
failure?: RequestFailure<any>

This will be called upon failure to complete a request.

includeFields?: boolean
includeProjectAndShared?: boolean
scope?: any

A scoping object for the success and failure callback functions (default to this).

This will be called upon successfully completing a request.

Generated using TypeDoc