@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
46 lines (45 loc) • 1.18 kB
TypeScript
/**
* 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 { UserDehydrated } from './user-dehydrated';
/**
*
* @export
* @interface FrameV2AllOf
*/
export interface FrameV2AllOf {
/**
* Button title of a mini app
* @type {string}
* @memberof FrameV2AllOf
*/
'title'?: string;
/**
*
* @type {FarcasterManifest}
* @memberof FrameV2AllOf
*/
'manifest'?: FarcasterManifest;
/**
*
* @type {UserDehydrated}
* @memberof FrameV2AllOf
*/
'author'?: UserDehydrated;
/**
*
* @type {FrameV2AllOfMetadata}
* @memberof FrameV2AllOf
*/
'metadata'?: FrameV2AllOfMetadata;
}