/** * 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 { ProductAggregationResource } from './ProductAggregationResource'; /** * * @export * @interface ProductAggregationResourceArrayResponse */ export interface ProductAggregationResourceArrayResponse { /** * * @type {Array} * @memberof ProductAggregationResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductAggregationResourceArrayResponse interface. */ export declare function instanceOfProductAggregationResourceArrayResponse(value: object): value is ProductAggregationResourceArrayResponse; export declare function ProductAggregationResourceArrayResponseFromJSON(json: any): ProductAggregationResourceArrayResponse; export declare function ProductAggregationResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductAggregationResourceArrayResponse; export declare function ProductAggregationResourceArrayResponseToJSON(json: any): ProductAggregationResourceArrayResponse; export declare function ProductAggregationResourceArrayResponseToJSONTyped(value?: ProductAggregationResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;