/** * 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. */ /** * * @export * @interface ProductSearchResponseResourcePriceInfo */ export interface ProductSearchResponseResourcePriceInfo { /** * * @type {number} * @memberof ProductSearchResponseResourcePriceInfo */ minPrice: number; /** * * @type {number} * @memberof ProductSearchResponseResourcePriceInfo */ maxPrice: number; /** * * @type {number} * @memberof ProductSearchResponseResourcePriceInfo */ lowestPrice: number; /** * * @type {number} * @memberof ProductSearchResponseResourcePriceInfo */ highestPrice: number; } /** * Check if a given object implements the ProductSearchResponseResourcePriceInfo interface. */ export declare function instanceOfProductSearchResponseResourcePriceInfo(value: object): value is ProductSearchResponseResourcePriceInfo; export declare function ProductSearchResponseResourcePriceInfoFromJSON(json: any): ProductSearchResponseResourcePriceInfo; export declare function ProductSearchResponseResourcePriceInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductSearchResponseResourcePriceInfo; export declare function ProductSearchResponseResourcePriceInfoToJSON(json: any): ProductSearchResponseResourcePriceInfo; export declare function ProductSearchResponseResourcePriceInfoToJSONTyped(value?: ProductSearchResponseResourcePriceInfo | null, ignoreDiscriminator?: boolean): any;