/** * 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 { PageResource } from './PageResource'; import type { PagingMetadata } from './PagingMetadata'; /** * * @export * @interface PaginatedPageResourceResponse */ export interface PaginatedPageResourceResponse { /** * * @type {Array} * @memberof PaginatedPageResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedPageResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedPageResourceResponse interface. */ export declare function instanceOfPaginatedPageResourceResponse(value: object): value is PaginatedPageResourceResponse; export declare function PaginatedPageResourceResponseFromJSON(json: any): PaginatedPageResourceResponse; export declare function PaginatedPageResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedPageResourceResponse; export declare function PaginatedPageResourceResponseToJSON(json: any): PaginatedPageResourceResponse; export declare function PaginatedPageResourceResponseToJSONTyped(value?: PaginatedPageResourceResponse | null, ignoreDiscriminator?: boolean): any;