export interface PagedResponse { readonly total_count: number; readonly count: number; readonly page_number: number; readonly page_total: number; readonly limit: number; } export interface ResponsePage { readonly pages: number; readonly page: number; readonly requested: number; readonly received: number; readonly total: number; readonly items: ReadonlyArray; }