/** * 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 { ProductResource } from './ProductResource'; /** * * @export * @interface ProductResourceArrayResponse */ export interface ProductResourceArrayResponse { /** * * @type {Array} * @memberof ProductResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductResourceArrayResponse interface. */ export declare function instanceOfProductResourceArrayResponse(value: object): value is ProductResourceArrayResponse; export declare function ProductResourceArrayResponseFromJSON(json: any): ProductResourceArrayResponse; export declare function ProductResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductResourceArrayResponse; export declare function ProductResourceArrayResponseToJSON(json: any): ProductResourceArrayResponse; export declare function ProductResourceArrayResponseToJSONTyped(value?: ProductResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;