/** * 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 { ProductChildLineItemLiteResource } from './ProductChildLineItemLiteResource'; /** * * @export * @interface ProductChildLineItemLiteResourceArrayResponse */ export interface ProductChildLineItemLiteResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildLineItemLiteResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildLineItemLiteResourceArrayResponse interface. */ export declare function instanceOfProductChildLineItemLiteResourceArrayResponse(value: object): value is ProductChildLineItemLiteResourceArrayResponse; export declare function ProductChildLineItemLiteResourceArrayResponseFromJSON(json: any): ProductChildLineItemLiteResourceArrayResponse; export declare function ProductChildLineItemLiteResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildLineItemLiteResourceArrayResponse; export declare function ProductChildLineItemLiteResourceArrayResponseToJSON(json: any): ProductChildLineItemLiteResourceArrayResponse; export declare function ProductChildLineItemLiteResourceArrayResponseToJSONTyped(value?: ProductChildLineItemLiteResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;