/** * 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 { ProductChildRelationResource } from './ProductChildRelationResource'; /** * * @export * @interface ProductChildRelationResourceArrayResponse */ export interface ProductChildRelationResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildRelationResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildRelationResourceArrayResponse interface. */ export declare function instanceOfProductChildRelationResourceArrayResponse(value: object): value is ProductChildRelationResourceArrayResponse; export declare function ProductChildRelationResourceArrayResponseFromJSON(json: any): ProductChildRelationResourceArrayResponse; export declare function ProductChildRelationResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildRelationResourceArrayResponse; export declare function ProductChildRelationResourceArrayResponseToJSON(json: any): ProductChildRelationResourceArrayResponse; export declare function ProductChildRelationResourceArrayResponseToJSONTyped(value?: ProductChildRelationResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;