/** * 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 { ProductRangeAggregationResource } from './ProductRangeAggregationResource'; import type { ProductRangeSearchResponseResourceMeta } from './ProductRangeSearchResponseResourceMeta'; import type { ProductRangeSearchResultResource } from './ProductRangeSearchResultResource'; /** * * @export * @interface ProductRangeSearchResponseResource */ export interface ProductRangeSearchResponseResource { /** * * @type {Array} * @memberof ProductRangeSearchResponseResource */ data: Array; /** * * @type {ProductRangeSearchResponseResourceMeta} * @memberof ProductRangeSearchResponseResource */ meta: ProductRangeSearchResponseResourceMeta; /** * * @type {ProductRangeAggregationResource} * @memberof ProductRangeSearchResponseResource */ aggregations: ProductRangeAggregationResource; } /** * Check if a given object implements the ProductRangeSearchResponseResource interface. */ export declare function instanceOfProductRangeSearchResponseResource(value: object): value is ProductRangeSearchResponseResource; export declare function ProductRangeSearchResponseResourceFromJSON(json: any): ProductRangeSearchResponseResource; export declare function ProductRangeSearchResponseResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRangeSearchResponseResource; export declare function ProductRangeSearchResponseResourceToJSON(json: any): ProductRangeSearchResponseResource; export declare function ProductRangeSearchResponseResourceToJSONTyped(value?: ProductRangeSearchResponseResource | null, ignoreDiscriminator?: boolean): any;