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