/** * 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 ProductRangeAggregationResource */ export interface ProductRangeAggregationResource { /** * * @type {Array} * @memberof ProductRangeAggregationResource */ attributes: Array; /** * * @type {Array} * @memberof ProductRangeAggregationResource */ brands: Array; /** * * @type {Array} * @memberof ProductRangeAggregationResource */ categories: Array; } /** * Check if a given object implements the ProductRangeAggregationResource interface. */ export declare function instanceOfProductRangeAggregationResource(value: object): value is ProductRangeAggregationResource; export declare function ProductRangeAggregationResourceFromJSON(json: any): ProductRangeAggregationResource; export declare function ProductRangeAggregationResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRangeAggregationResource; export declare function ProductRangeAggregationResourceToJSON(json: any): ProductRangeAggregationResource; export declare function ProductRangeAggregationResourceToJSONTyped(value?: ProductRangeAggregationResource | null, ignoreDiscriminator?: boolean): any;