/** * 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 { ProductChildAttributeResource } from './ProductChildAttributeResource'; /** * * @export * @interface ProductChildAttributeResourceArrayResponse */ export interface ProductChildAttributeResourceArrayResponse { /** * * @type {Array} * @memberof ProductChildAttributeResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductChildAttributeResourceArrayResponse interface. */ export declare function instanceOfProductChildAttributeResourceArrayResponse(value: object): value is ProductChildAttributeResourceArrayResponse; export declare function ProductChildAttributeResourceArrayResponseFromJSON(json: any): ProductChildAttributeResourceArrayResponse; export declare function ProductChildAttributeResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildAttributeResourceArrayResponse; export declare function ProductChildAttributeResourceArrayResponseToJSON(json: any): ProductChildAttributeResourceArrayResponse; export declare function ProductChildAttributeResourceArrayResponseToJSONTyped(value?: ProductChildAttributeResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;