/** * 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. */ /** * * @export * @interface SalesAggregate */ export interface SalesAggregate { /** * * @type {string} * @memberof SalesAggregate */ contentType: string; /** * * @type {string} * @memberof SalesAggregate */ contentId: string; /** * * @type {number} * @memberof SalesAggregate */ purchaseCount: number; } /** * Check if a given object implements the SalesAggregate interface. */ export declare function instanceOfSalesAggregate(value: object): value is SalesAggregate; export declare function SalesAggregateFromJSON(json: any): SalesAggregate; export declare function SalesAggregateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesAggregate; export declare function SalesAggregateToJSON(value?: SalesAggregate | null): any;