/** * 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 { ProductChildResource } from './ProductChildResource'; /** * * @export * @interface PaginatedProductChildResourceResponse */ export interface PaginatedProductChildResourceResponse { /** * * @type {Array} * @memberof PaginatedProductChildResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductChildResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductChildResourceResponse interface. */ export declare function instanceOfPaginatedProductChildResourceResponse(value: object): value is PaginatedProductChildResourceResponse; export declare function PaginatedProductChildResourceResponseFromJSON(json: any): PaginatedProductChildResourceResponse; export declare function PaginatedProductChildResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductChildResourceResponse; export declare function PaginatedProductChildResourceResponseToJSON(json: any): PaginatedProductChildResourceResponse; export declare function PaginatedProductChildResourceResponseToJSONTyped(value?: PaginatedProductChildResourceResponse | null, ignoreDiscriminator?: boolean): any;