/** * 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 { ProductChildLiteResource } from './ProductChildLiteResource'; /** * * @export * @interface PaginatedProductChildLiteResourceResponse */ export interface PaginatedProductChildLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedProductChildLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductChildLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductChildLiteResourceResponse interface. */ export declare function instanceOfPaginatedProductChildLiteResourceResponse(value: object): value is PaginatedProductChildLiteResourceResponse; export declare function PaginatedProductChildLiteResourceResponseFromJSON(json: any): PaginatedProductChildLiteResourceResponse; export declare function PaginatedProductChildLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductChildLiteResourceResponse; export declare function PaginatedProductChildLiteResourceResponseToJSON(json: any): PaginatedProductChildLiteResourceResponse; export declare function PaginatedProductChildLiteResourceResponseToJSONTyped(value?: PaginatedProductChildLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;