interface UserArray {
    _links?: GenericLinks;
    limit?: number;
    results: (null | UserV1)[];
    size?: number;
    start?: number;
    totalSize?: number;
}

Hierarchy

  • Record<string, unknown>
    • UserArray

Properties

_links?: GenericLinks
limit?: number
results: (null | UserV1)[]
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.