/** * 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 { ProductChildResource } from './ProductChildResource'; /** * * @export * @interface ProductChildResourceArrayResponse */ export interface ProductChildResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildResourceArrayResponse interface. */ export declare function instanceOfProductChildResourceArrayResponse(value: object): value is ProductChildResourceArrayResponse; export declare function ProductChildResourceArrayResponseFromJSON(json: any): ProductChildResourceArrayResponse; export declare function ProductChildResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildResourceArrayResponse; export declare function ProductChildResourceArrayResponseToJSON(json: any): ProductChildResourceArrayResponse; export declare function ProductChildResourceArrayResponseToJSONTyped(value?: ProductChildResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;