/** * 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 { ProductParentFrontendResource } from './ProductParentFrontendResource'; /** * * @export * @interface ProductParentFrontendResourceArrayResponse */ export interface ProductParentFrontendResourceArrayResponse { /** * * @type {Array} * @memberof ProductParentFrontendResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductParentFrontendResourceArrayResponse interface. */ export declare function instanceOfProductParentFrontendResourceArrayResponse(value: object): value is ProductParentFrontendResourceArrayResponse; export declare function ProductParentFrontendResourceArrayResponseFromJSON(json: any): ProductParentFrontendResourceArrayResponse; export declare function ProductParentFrontendResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductParentFrontendResourceArrayResponse; export declare function ProductParentFrontendResourceArrayResponseToJSON(json: any): ProductParentFrontendResourceArrayResponse; export declare function ProductParentFrontendResourceArrayResponseToJSONTyped(value?: ProductParentFrontendResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;