UNPKG

@neynar/nodejs-sdk

Version:

SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)

89 lines (88 loc) 1.99 kB
/** * Neynar API * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 3.115.0 * Contact: team@neynar.com * * 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 { CastEmbeddedParentAuthor } from './cast-embedded-parent-author'; import type { ChannelDehydrated } from './channel-dehydrated'; import type { EmbedDeep } from './embed-deep'; import type { UserDehydrated } from './user-dehydrated'; /** * * @export * @interface CastEmbedded */ export interface CastEmbedded { /** * * @type {string} * @memberof CastEmbedded */ 'hash': string; /** * * @type {string} * @memberof CastEmbedded */ 'parent_hash': string | null; /** * * @type {string} * @memberof CastEmbedded */ 'parent_url': string | null; /** * * @type {string} * @memberof CastEmbedded */ 'root_parent_url': string | null; /** * * @type {CastEmbeddedParentAuthor} * @memberof CastEmbedded */ 'parent_author': CastEmbeddedParentAuthor; /** * * @type {UserDehydrated} * @memberof CastEmbedded */ 'author': UserDehydrated; /** * * @type {UserDehydrated} * @memberof CastEmbedded */ 'app'?: UserDehydrated | null; /** * * @type {string} * @memberof CastEmbedded */ 'text': string; /** * * @type {string} * @memberof CastEmbedded */ 'timestamp': string; /** * * @type {Array<EmbedDeep>} * @memberof CastEmbedded */ 'embeds': Array<EmbedDeep>; /** * * @type {ChannelDehydrated} * @memberof CastEmbedded */ 'channel': ChannelDehydrated | null; }