UNPKG

@neynar/nodejs-sdk

Version:

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

46 lines (45 loc) 1.23 kB
/** * Farcaster API V2 * The Farcaster API allows you to interact with the Farcaster protocol. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 2.46.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 { FarcasterManifest } from './farcaster-manifest'; import type { FrameV2AllOfMetadata } from './frame-v2-all-of-metadata'; import type { User } from './user'; /** * * @export * @interface FrameV2WithFullAuthorAllOf */ export interface FrameV2WithFullAuthorAllOf { /** * Button title of a mini app * @type {string} * @memberof FrameV2WithFullAuthorAllOf */ 'title'?: string; /** * * @type {FarcasterManifest} * @memberof FrameV2WithFullAuthorAllOf */ 'manifest'?: FarcasterManifest; /** * * @type {User} * @memberof FrameV2WithFullAuthorAllOf */ 'author'?: User; /** * * @type {FrameV2AllOfMetadata} * @memberof FrameV2WithFullAuthorAllOf */ 'metadata'?: FrameV2AllOfMetadata; }