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