/** * 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 Activity */ export interface Activity { /** * * @type {string} * @memberof Activity */ timestamp: string; /** * * @type {string} * @memberof Activity */ itemType: ActivityItemTypeEnum; /** * * @type {object} * @memberof Activity */ item: object; /** * * @type {string} * @memberof Activity */ _class: string; } /** * @export */ export declare const ActivityItemTypeEnum: { readonly Track: "track"; readonly Playlist: "playlist"; }; export type ActivityItemTypeEnum = typeof ActivityItemTypeEnum[keyof typeof ActivityItemTypeEnum]; /** * Check if a given object implements the Activity interface. */ export declare function instanceOfActivity(value: object): value is Activity; export declare function ActivityFromJSON(json: any): Activity; export declare function ActivityFromJSONTyped(json: any, ignoreDiscriminator: boolean): Activity; export declare function ActivityToJSON(value?: Activity | null): any;