Same as GroupArray but with _links property.

interface GroupArrayWithLinks {
    _links: GenericLinks;
    limit: number;
    results: Group[];
    size: number;
    start: number;
    totalSize?: number;
}

Hierarchy

  • Record<string, unknown>
    • GroupArrayWithLinks

Properties

_links: GenericLinks
limit: number
results: Group[]
size: number
start: number
totalSize?: number

This property will return total count of the objects before pagination is applied. This value is returned if shouldReturnTotalSize is set to true.