UNPKG

@neynar/nodejs-sdk

Version:

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

39 lines (38 loc) 1.38 kB
/** * 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. */ import type { MintNft200ResponseTransactionsInnerReceipt } from './mint-nft200-response-transactions-inner-receipt'; import type { MintNft200ResponseTransactionsInnerRecipient } from './mint-nft200-response-transactions-inner-recipient'; /** * * @export * @interface MintNft200ResponseTransactionsInner */ export interface MintNft200ResponseTransactionsInner { /** * * @type {MintNft200ResponseTransactionsInnerRecipient} * @memberof MintNft200ResponseTransactionsInner */ 'recipient': MintNft200ResponseTransactionsInnerRecipient; /** * Hexadecimal number expressed as string with \'0x\' prefix * @type {string} * @memberof MintNft200ResponseTransactionsInner */ 'transaction_hash': string; /** * * @type {MintNft200ResponseTransactionsInnerReceipt} * @memberof MintNft200ResponseTransactionsInner */ 'receipt'?: MintNft200ResponseTransactionsInnerReceipt | null; }