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