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