UNPKG

@neynar/nodejs-sdk

Version:

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

58 lines (57 loc) 1.42 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 { FrameActionButton } from './frame-action-button'; import type { FrameV1AllOfInput } from './frame-v1-all-of-input'; import type { FrameV1AllOfState } from './frame-v1-all-of-state'; /** * * @export * @interface FrameV1AllOf */ export interface FrameV1AllOf { /** * * @type {Array<FrameActionButton>} * @memberof FrameV1AllOf */ 'buttons'?: Array<FrameActionButton>; /** * Post URL to take an action on this mini app * @type {string} * @memberof FrameV1AllOf */ 'post_url'?: string; /** * * @type {string} * @memberof FrameV1AllOf */ 'title'?: string; /** * * @type {string} * @memberof FrameV1AllOf */ 'image_aspect_ratio'?: string; /** * * @type {FrameV1AllOfInput} * @memberof FrameV1AllOf */ 'input'?: FrameV1AllOfInput; /** * * @type {FrameV1AllOfState} * @memberof FrameV1AllOf */ 'state'?: FrameV1AllOfState; }