/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ import { PaginationLinks } from './PaginationLinks'; /** * The response data list with associated pagination links. * @export * @interface PaginationResponse */ export interface PaginationResponse { /** * The pagination links. * @type {PaginationLinks} * @memberof PaginationResponse */ links: PaginationLinks; /** * The list of settings. * @type {Array} * @memberof PaginationResponse */ data: Array; } /** * The formatted response for a list of paginated items. * @export * @interface PaginationFormattedResponse */ export interface PaginationFormattedResponse { /** * The list of items that matched the query. * @type {Array} * @memberof PaginationFormattedResponse */ data: Array; /** * The pagination links for the response. * @type {PaginationLinks} * @memberof PaginationFormattedResponse */ links?: PaginationLinks; }