/** * 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 { ReceiveTipNotificationActionData } from './ReceiveTipNotificationActionData'; /** * * @export * @interface ReceiveTipNotificationAction */ export interface ReceiveTipNotificationAction { /** * * @type {string} * @memberof ReceiveTipNotificationAction */ specifier: string; /** * * @type {string} * @memberof ReceiveTipNotificationAction */ type: string; /** * * @type {number} * @memberof ReceiveTipNotificationAction */ timestamp: number; /** * * @type {ReceiveTipNotificationActionData} * @memberof ReceiveTipNotificationAction */ data: ReceiveTipNotificationActionData; } /** * Check if a given object implements the ReceiveTipNotificationAction interface. */ export declare function instanceOfReceiveTipNotificationAction(value: object): value is ReceiveTipNotificationAction; export declare function ReceiveTipNotificationActionFromJSON(json: any): ReceiveTipNotificationAction; export declare function ReceiveTipNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReceiveTipNotificationAction; export declare function ReceiveTipNotificationActionToJSON(value?: ReceiveTipNotificationAction | null): any;