@standard-crypto/farcaster-js-neynar
Version:
A tool for interacting with Farcaster via Neynar APIs.
40 lines (39 loc) • 1.12 kB
TypeScript
/**
* v1 Farcaster
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { ReactionWithCastMetaCast } from './reaction-with-cast-meta-cast.js';
import { ReactionWithCastMetaReaction } from './reaction-with-cast-meta-reaction.js';
import { User } from './user.js';
/**
* Reaction of a user (either like or recast), along with its associated cast
* @export
* @interface ReactionWithCastMeta
*/
export interface ReactionWithCastMeta {
/**
*
* @type {ReactionWithCastMetaReaction}
* @memberof ReactionWithCastMeta
*/
'reaction': ReactionWithCastMetaReaction;
/**
*
* @type {ReactionWithCastMetaCast}
* @memberof ReactionWithCastMeta
*/
'cast'?: ReactionWithCastMetaCast;
/**
*
* @type {User}
* @memberof ReactionWithCastMeta
*/
'cast_author'?: User;
}