/** * Audius API * * The version of the OpenAPI document: 1.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 { SalesAggregate } from './SalesAggregate'; /** * * @export * @interface SalesAggregateResponse */ export interface SalesAggregateResponse { /** * * @type {Array} * @memberof SalesAggregateResponse */ data?: Array; } /** * Check if a given object implements the SalesAggregateResponse interface. */ export declare function instanceOfSalesAggregateResponse(value: object): value is SalesAggregateResponse; export declare function SalesAggregateResponseFromJSON(json: any): SalesAggregateResponse; export declare function SalesAggregateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesAggregateResponse; export declare function SalesAggregateResponseToJSON(value?: SalesAggregateResponse | null): any;