Interface PropertyUsagesOptions

interface PropertyUsagesOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    maxUsageCount?: number;
    propertyIds?: number[];
    propertyURIs?: string[];
    scope?: any;
    success?: RequestSuccess<PropertyUsages[]>;
}

Hierarchy (view full)

Properties

containerPath?: string
failure?: RequestFailure<any>

This will be called upon failure to complete a request.

maxUsageCount?: number
propertyIds?: number[]
propertyURIs?: string[]
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