/** * 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 { ProductChildFrontendResource } from './ProductChildFrontendResource'; /** * * @export * @interface ProductChildFrontendResourceArrayResponse */ export interface ProductChildFrontendResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildFrontendResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildFrontendResourceArrayResponse interface. */ export declare function instanceOfProductChildFrontendResourceArrayResponse(value: object): value is ProductChildFrontendResourceArrayResponse; export declare function ProductChildFrontendResourceArrayResponseFromJSON(json: any): ProductChildFrontendResourceArrayResponse; export declare function ProductChildFrontendResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildFrontendResourceArrayResponse; export declare function ProductChildFrontendResourceArrayResponseToJSON(json: any): ProductChildFrontendResourceArrayResponse; export declare function ProductChildFrontendResourceArrayResponseToJSONTyped(value?: ProductChildFrontendResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;