@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
49 lines (48 loc) • 1.61 kB
TypeScript
/**
* 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.34.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.
*/
/**
*
* @export
* @interface ValidateFrameActionReqBody
*/
export interface ValidateFrameActionReqBody {
/**
* Hexadecimal string of message bytes.
* @type {string}
* @memberof ValidateFrameActionReqBody
*/
'message_bytes_in_hex': string;
/**
* Adds viewer_context inside the cast object to indicate whether the interactor reacted to the cast housing the mini app.
* @type {boolean}
* @memberof ValidateFrameActionReqBody
*/
'cast_reaction_context'?: boolean;
/**
* Adds viewer_context inside the user (interactor) object to indicate whether the interactor follows or is followed by the cast author.
* @type {boolean}
* @memberof ValidateFrameActionReqBody
*/
'follow_context'?: boolean;
/**
* Adds context about the app used by the user inside `frame.action`.
* @type {boolean}
* @memberof ValidateFrameActionReqBody
*/
'signer_context'?: boolean;
/**
* Adds context about the channel that the cast belongs to inside of the cast object.
* @type {boolean}
* @memberof ValidateFrameActionReqBody
*/
'channel_follow_context'?: boolean;
}