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