/** * 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 { ProductChildLiteFrontendResource } from './ProductChildLiteFrontendResource'; /** * * @export * @interface ProductChildLiteFrontendResourceArrayResponse */ export interface ProductChildLiteFrontendResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildLiteFrontendResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildLiteFrontendResourceArrayResponse interface. */ export declare function instanceOfProductChildLiteFrontendResourceArrayResponse(value: object): value is ProductChildLiteFrontendResourceArrayResponse; export declare function ProductChildLiteFrontendResourceArrayResponseFromJSON(json: any): ProductChildLiteFrontendResourceArrayResponse; export declare function ProductChildLiteFrontendResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildLiteFrontendResourceArrayResponse; export declare function ProductChildLiteFrontendResourceArrayResponseToJSON(json: any): ProductChildLiteFrontendResourceArrayResponse; export declare function ProductChildLiteFrontendResourceArrayResponseToJSONTyped(value?: ProductChildLiteFrontendResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;