/** * 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 { ListenCount } from './ListenCount'; /** * * @export * @interface MonthlyAggregatePlay */ export interface MonthlyAggregatePlay { /** * * @type {number} * @memberof MonthlyAggregatePlay */ totalListens?: number; /** * * @type {Array} * @memberof MonthlyAggregatePlay */ trackIds?: Array; /** * * @type {Array} * @memberof MonthlyAggregatePlay */ listenCounts?: Array; } /** * Check if a given object implements the MonthlyAggregatePlay interface. */ export declare function instanceOfMonthlyAggregatePlay(value: object): value is MonthlyAggregatePlay; export declare function MonthlyAggregatePlayFromJSON(json: any): MonthlyAggregatePlay; export declare function MonthlyAggregatePlayFromJSONTyped(json: any, ignoreDiscriminator: boolean): MonthlyAggregatePlay; export declare function MonthlyAggregatePlayToJSON(value?: MonthlyAggregatePlay | null): any;