Interface AggregatedUsage

interface AggregatedUsage {
    data: number[];
    dateRange: {
        end: string;
        start: string;
    };
    granularity?: string;
    sys: {
        accumulation: string;
        dimensions: Record<string, AggregatedUsageDimension>;
        id: string;
        key: string;
        organization: {
            sys: {
                id: string;
                linkType: "Organization";
                type: "Link";
            };
        };
        type: string;
        unitOfMeasurement: string;
    };
    toPlainObject(): AggregatedUsageItemProps;
}

Hierarchy (view full)

Properties

data: number[]
dateRange: {
    end: string;
    start: string;
}
granularity?: string
sys: {
    accumulation: string;
    dimensions: Record<string, AggregatedUsageDimension>;
    id: string;
    key: string;
    organization: {
        sys: {
            id: string;
            linkType: "Organization";
            type: "Link";
        };
    };
    type: string;
    unitOfMeasurement: string;
}

Methods