interface CollectionData<T> {
    abacRestrictions?: string[];
    collection: T[];
    count: number;
    from?: number;
    key?: string;
    limit?: number;
    next?: string;
    outputFormat?: OutputFormat;
    total?: number;
}

Type Parameters

  • T

Properties

abacRestrictions?: string[]
collection: T[]
count: number
from?: number
key?: string
limit?: number
next?: string
outputFormat?: OutputFormat
total?: number