@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
56 lines (55 loc) • 1.28 kB
TypeScript
/**
* Farcaster Hub API
* Perform basic queries of Farcaster state via the REST API of a Farcaster hub. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 2.35.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 { UserNameType } from './user-name-type';
/**
*
* @export
* @interface UserNameProof
*/
export interface UserNameProof {
/**
* Seconds since Unix Epoch which began on Jan 1, 1970 00:00:00 UTC
* @type {number}
* @memberof UserNameProof
*/
'timestamp': number;
/**
*
* @type {string}
* @memberof UserNameProof
*/
'name': string;
/**
*
* @type {string}
* @memberof UserNameProof
*/
'owner': string;
/**
*
* @type {string}
* @memberof UserNameProof
*/
'signature': string;
/**
* The FID of the user who owns this username proof
* @type {number}
* @memberof UserNameProof
*/
'fid': number;
/**
*
* @type {UserNameType}
* @memberof UserNameProof
*/
'type': UserNameType;
}