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