interface PageArrayResponse<T> {
    count?: number;
    format: OutputFormat;
    from?: number;
    items: T[];
    limit: number;
    next?: string;
    total?: number;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

count?: number
format: OutputFormat
from?: number
items: T[]
limit: number
next?: string
total?: number