/** * 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 { ClaimableRewardNotificationActionData } from './ClaimableRewardNotificationActionData'; /** * * @export * @interface ClaimableRewardNotificationAction */ export interface ClaimableRewardNotificationAction { /** * * @type {string} * @memberof ClaimableRewardNotificationAction */ specifier: string; /** * * @type {string} * @memberof ClaimableRewardNotificationAction */ type: string; /** * * @type {number} * @memberof ClaimableRewardNotificationAction */ timestamp: number; /** * * @type {ClaimableRewardNotificationActionData} * @memberof ClaimableRewardNotificationAction */ data: ClaimableRewardNotificationActionData; } /** * Check if a given object implements the ClaimableRewardNotificationAction interface. */ export declare function instanceOfClaimableRewardNotificationAction(value: object): value is ClaimableRewardNotificationAction; export declare function ClaimableRewardNotificationActionFromJSON(json: any): ClaimableRewardNotificationAction; export declare function ClaimableRewardNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClaimableRewardNotificationAction; export declare function ClaimableRewardNotificationActionToJSON(value?: ClaimableRewardNotificationAction | null): any;