/** * 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 { PageLiteResource } from './PageLiteResource'; /** * * @export * @interface PaginatedPageLiteResourceResponse */ export interface PaginatedPageLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedPageLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedPageLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedPageLiteResourceResponse interface. */ export declare function instanceOfPaginatedPageLiteResourceResponse(value: object): value is PaginatedPageLiteResourceResponse; export declare function PaginatedPageLiteResourceResponseFromJSON(json: any): PaginatedPageLiteResourceResponse; export declare function PaginatedPageLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedPageLiteResourceResponse; export declare function PaginatedPageLiteResourceResponseToJSON(json: any): PaginatedPageLiteResourceResponse; export declare function PaginatedPageLiteResourceResponseToJSONTyped(value?: PaginatedPageLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;