/** * 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 { ProductChildListResource } from './ProductChildListResource'; /** * * @export * @interface PaginatedProductChildListResourceResponse */ export interface PaginatedProductChildListResourceResponse { /** * * @type {Array} * @memberof PaginatedProductChildListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductChildListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductChildListResourceResponse interface. */ export declare function instanceOfPaginatedProductChildListResourceResponse(value: object): value is PaginatedProductChildListResourceResponse; export declare function PaginatedProductChildListResourceResponseFromJSON(json: any): PaginatedProductChildListResourceResponse; export declare function PaginatedProductChildListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductChildListResourceResponse; export declare function PaginatedProductChildListResourceResponseToJSON(json: any): PaginatedProductChildListResourceResponse; export declare function PaginatedProductChildListResourceResponseToJSONTyped(value?: PaginatedProductChildListResourceResponse | null, ignoreDiscriminator?: boolean): any;