/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { PagingMetadata } from './PagingMetadata'; import type { PageListResource } from './PageListResource'; /** * * @export * @interface PaginatedPageListResourceResponse */ export interface PaginatedPageListResourceResponse { /** * * @type {Array} * @memberof PaginatedPageListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedPageListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedPageListResourceResponse interface. */ export declare function instanceOfPaginatedPageListResourceResponse(value: object): value is PaginatedPageListResourceResponse; export declare function PaginatedPageListResourceResponseFromJSON(json: any): PaginatedPageListResourceResponse; export declare function PaginatedPageListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedPageListResourceResponse; export declare function PaginatedPageListResourceResponseToJSON(json: any): PaginatedPageListResourceResponse; export declare function PaginatedPageListResourceResponseToJSONTyped(value?: PaginatedPageListResourceResponse | null, ignoreDiscriminator?: boolean): any;