@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
52 lines (51 loc) • 1.45 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 { TransactionFrameConfig } from './transaction-frame-config';
import type { TransactionFrameStatus } from './transaction-frame-status';
import type { TransactionFrameType } from './transaction-frame-type';
/**
*
* @export
* @interface TransactionFrameBase
*/
export interface TransactionFrameBase {
/**
* Unique identifier for the transaction mini app
* @type {string}
* @memberof TransactionFrameBase
*/
'id': string;
/**
* URL that can be used to access the transaction mini app
* @type {string}
* @memberof TransactionFrameBase
*/
'url': string;
/**
*
* @type {TransactionFrameType}
* @memberof TransactionFrameBase
*/
'type': TransactionFrameType;
/**
*
* @type {TransactionFrameConfig}
* @memberof TransactionFrameBase
*/
'config': TransactionFrameConfig;
/**
*
* @type {TransactionFrameStatus}
* @memberof TransactionFrameBase
*/
'status': TransactionFrameStatus;
}