/** * 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 { ProductChildListResource } from './ProductChildListResource'; /** * * @export * @interface ProductChildListResourceArrayResponse */ export interface ProductChildListResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildListResourceArrayResponse interface. */ export declare function instanceOfProductChildListResourceArrayResponse(value: object): value is ProductChildListResourceArrayResponse; export declare function ProductChildListResourceArrayResponseFromJSON(json: any): ProductChildListResourceArrayResponse; export declare function ProductChildListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildListResourceArrayResponse; export declare function ProductChildListResourceArrayResponseToJSON(json: any): ProductChildListResourceArrayResponse; export declare function ProductChildListResourceArrayResponseToJSONTyped(value?: ProductChildListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;