Type Alias AggregatedUsageItemProps

AggregatedUsageItemProps: {
    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;
    };
}