/** * 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 ProductAggregationResource */ export interface ProductAggregationResource { /** * * @type {Array} * @memberof ProductAggregationResource */ attributes: Array; /** * * @type {Array} * @memberof ProductAggregationResource */ priceRanges: Array; /** * * @type {Array} * @memberof ProductAggregationResource */ brands: Array; /** * * @type {Array} * @memberof ProductAggregationResource */ ratings: Array; } /** * Check if a given object implements the ProductAggregationResource interface. */ export declare function instanceOfProductAggregationResource(value: object): value is ProductAggregationResource; export declare function ProductAggregationResourceFromJSON(json: any): ProductAggregationResource; export declare function ProductAggregationResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductAggregationResource; export declare function ProductAggregationResourceToJSON(json: any): ProductAggregationResource; export declare function ProductAggregationResourceToJSONTyped(value?: ProductAggregationResource | null, ignoreDiscriminator?: boolean): any;