/** * 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 { ProductChildLiteResource } from './ProductChildLiteResource'; /** * * @export * @interface ProductChildLiteResourceArrayResponse */ export interface ProductChildLiteResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildLiteResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildLiteResourceArrayResponse interface. */ export declare function instanceOfProductChildLiteResourceArrayResponse(value: object): value is ProductChildLiteResourceArrayResponse; export declare function ProductChildLiteResourceArrayResponseFromJSON(json: any): ProductChildLiteResourceArrayResponse; export declare function ProductChildLiteResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildLiteResourceArrayResponse; export declare function ProductChildLiteResourceArrayResponseToJSON(json: any): ProductChildLiteResourceArrayResponse; export declare function ProductChildLiteResourceArrayResponseToJSONTyped(value?: ProductChildLiteResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;