/**
 * 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.175.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 { FetchRelevantFrames200ResponseRelevantFramesInnerFrameMetadata } from './fetch-relevant-frames200-response-relevant-frames-inner-frame-metadata';
import type { User } from './user';
/**
 * FrameV2 object
 */
export interface FetchRelevantFrames200ResponseRelevantFramesInnerFrame {
    'author'?: User;
    /**
     * Launch URL of the mini app
     */
    'frames_url': string;
    /**
     * URL of the image
     */
    'image': string;
    'manifest'?: FarcasterManifest;
    'metadata'?: FetchRelevantFrames200ResponseRelevantFramesInnerFrameMetadata;
    /**
     * Button title of a mini app
     */
    'title'?: string;
    /**
     * Version of the mini app, \'next\' for v2, \'vNext\' for v1
     */
    'version': string;
}
