UNPKG

@standard-crypto/farcaster-js-neynar

Version:

A tool for interacting with Farcaster via Neynar APIs.

46 lines (45 loc) 1.23 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 { CastWithInteractionsReactions } from './cast-with-interactions-reactions.js'; import { CastWithInteractionsReplies } from './cast-with-interactions-replies.js'; import { User } from './user.js'; /** * * @export * @interface CastWithInteractionsAllOf */ export interface CastWithInteractionsAllOf { /** * * @type {CastWithInteractionsReactions} * @memberof CastWithInteractionsAllOf */ 'reactions': CastWithInteractionsReactions; /** * * @type {CastWithInteractionsReplies} * @memberof CastWithInteractionsAllOf */ 'replies': CastWithInteractionsReplies; /** * * @type {string} * @memberof CastWithInteractionsAllOf */ 'thread_hash': string | null; /** * * @type {Array<User>} * @memberof CastWithInteractionsAllOf */ 'mentioned_profiles': Array<User>; }