UNPKG

@standard-crypto/farcaster-js-neynar

Version:

A tool for interacting with Farcaster via Neynar APIs.

69 lines (68 loc) 1.57 kB
/** * Farcaster API V2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.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 { CastWithInteractions } from './cast-with-interactions.js'; import { NotificationFollow } from './notification-follow.js'; import { NotificationReactions } from './notification-reactions.js'; /** * * @export * @interface Notification */ export interface Notification { /** * * @type {string} * @memberof Notification */ 'object': string; /** * * @type {string} * @memberof Notification */ 'most_recent_timestamp': string; /** * * @type {string} * @memberof Notification */ 'type': NotificationTypeEnum; /** * * @type {Array<NotificationFollow>} * @memberof Notification */ 'follows'?: Array<NotificationFollow>; /** * * @type {CastWithInteractions} * @memberof Notification */ 'cast'?: CastWithInteractions; /** * * @type {Array<NotificationReactions>} * @memberof Notification */ 'reactions'?: Array<NotificationReactions>; } /** * @export * @enum {string} */ export declare enum NotificationTypeEnum { Follows = "follows", Recasts = "recasts", Likes = "likes", Mention = "mention", Reply = "reply" }