UNPKG

@standard-crypto/farcaster-js-neynar

Version:

A tool for interacting with Farcaster via Neynar APIs.

77 lines (76 loc) 1.53 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 { CastNotificationType } from './cast-notification-type.js'; import { CastParentAuthor } from './cast-parent-author.js'; import { EmbeddedCast } from './embedded-cast.js'; import { User } from './user.js'; /** * * @export * @interface Cast */ export interface Cast { /** * * @type {string} * @memberof Cast */ 'hash': string; /** * * @type {string} * @memberof Cast */ 'parent_hash': string | null; /** * * @type {string} * @memberof Cast */ 'parent_url': string | null; /** * * @type {CastParentAuthor} * @memberof Cast */ 'parent_author': CastParentAuthor; /** * * @type {User} * @memberof Cast */ 'author': User; /** * * @type {string} * @memberof Cast */ 'text': string; /** * * @type {string} * @memberof Cast */ 'timestamp': string; /** * * @type {Array<EmbeddedCast>} * @memberof Cast */ 'embeds': Array<EmbeddedCast>; /** * * @type {CastNotificationType} * @memberof Cast */ 'type'?: CastNotificationType; }