/** * 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 { ProductRangeSearchResponseResource } from './ProductRangeSearchResponseResource'; /** * * @export * @interface ProductRangeSearchResponseResourceArrayResponse */ export interface ProductRangeSearchResponseResourceArrayResponse { /** * * @type {Array} * @memberof ProductRangeSearchResponseResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductRangeSearchResponseResourceArrayResponse interface. */ export declare function instanceOfProductRangeSearchResponseResourceArrayResponse(value: object): value is ProductRangeSearchResponseResourceArrayResponse; export declare function ProductRangeSearchResponseResourceArrayResponseFromJSON(json: any): ProductRangeSearchResponseResourceArrayResponse; export declare function ProductRangeSearchResponseResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRangeSearchResponseResourceArrayResponse; export declare function ProductRangeSearchResponseResourceArrayResponseToJSON(json: any): ProductRangeSearchResponseResourceArrayResponse; export declare function ProductRangeSearchResponseResourceArrayResponseToJSONTyped(value?: ProductRangeSearchResponseResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;