/** * 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 { TrackId } from './TrackId'; /** * * @export * @interface TrendingTimesIds */ export interface TrendingTimesIds { /** * * @type {Array} * @memberof TrendingTimesIds */ week?: Array; /** * * @type {Array} * @memberof TrendingTimesIds */ month?: Array; /** * * @type {Array} * @memberof TrendingTimesIds */ year?: Array; } /** * Check if a given object implements the TrendingTimesIds interface. */ export declare function instanceOfTrendingTimesIds(value: object): value is TrendingTimesIds; export declare function TrendingTimesIdsFromJSON(json: any): TrendingTimesIds; export declare function TrendingTimesIdsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrendingTimesIds; export declare function TrendingTimesIdsToJSON(value?: TrendingTimesIds | null): any;