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