/** * 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 { SendTipNotificationActionData } from './SendTipNotificationActionData'; /** * * @export * @interface SendTipNotificationAction */ export interface SendTipNotificationAction { /** * * @type {string} * @memberof SendTipNotificationAction */ specifier: string; /** * * @type {string} * @memberof SendTipNotificationAction */ type: string; /** * * @type {number} * @memberof SendTipNotificationAction */ timestamp: number; /** * * @type {SendTipNotificationActionData} * @memberof SendTipNotificationAction */ data: SendTipNotificationActionData; } /** * Check if a given object implements the SendTipNotificationAction interface. */ export declare function instanceOfSendTipNotificationAction(value: object): value is SendTipNotificationAction; export declare function SendTipNotificationActionFromJSON(json: any): SendTipNotificationAction; export declare function SendTipNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendTipNotificationAction; export declare function SendTipNotificationActionToJSON(value?: SendTipNotificationAction | null): any;