/** * 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 { TierChangeNotificationActionData } from './TierChangeNotificationActionData'; /** * * @export * @interface TierChangeNotificationAction */ export interface TierChangeNotificationAction { /** * * @type {string} * @memberof TierChangeNotificationAction */ specifier: string; /** * * @type {string} * @memberof TierChangeNotificationAction */ type: string; /** * * @type {number} * @memberof TierChangeNotificationAction */ timestamp: number; /** * * @type {TierChangeNotificationActionData} * @memberof TierChangeNotificationAction */ data: TierChangeNotificationActionData; } /** * Check if a given object implements the TierChangeNotificationAction interface. */ export declare function instanceOfTierChangeNotificationAction(value: object): value is TierChangeNotificationAction; export declare function TierChangeNotificationActionFromJSON(json: any): TierChangeNotificationAction; export declare function TierChangeNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TierChangeNotificationAction; export declare function TierChangeNotificationActionToJSON(value?: TierChangeNotificationAction | null): any;