/** * 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 { SupporterRankUpNotificationAction } from './SupporterRankUpNotificationAction'; /** * * @export * @interface SupporterRankUpNotification */ export interface SupporterRankUpNotification { /** * * @type {string} * @memberof SupporterRankUpNotification */ type: string; /** * * @type {string} * @memberof SupporterRankUpNotification */ groupId: string; /** * * @type {boolean} * @memberof SupporterRankUpNotification */ isSeen: boolean; /** * * @type {number} * @memberof SupporterRankUpNotification */ seenAt?: number; /** * * @type {Array} * @memberof SupporterRankUpNotification */ actions: Array; } /** * Check if a given object implements the SupporterRankUpNotification interface. */ export declare function instanceOfSupporterRankUpNotification(value: object): value is SupporterRankUpNotification; export declare function SupporterRankUpNotificationFromJSON(json: any): SupporterRankUpNotification; export declare function SupporterRankUpNotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupporterRankUpNotification; export declare function SupporterRankUpNotificationToJSON(value?: SupporterRankUpNotification | null): any;