@standard-crypto/farcaster-js-warpcast
Version:
A tool for interacting with the private APIs of the Warpcast client.
82 lines (81 loc) • 1.47 kB
TypeScript
/**
* Warpcast API
* Private API used by the Warpcast client
*
* 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 { UserPfp } from './user-pfp.js';
import { UserProfile } from './user-profile.js';
import { UserViewerContext } from './user-viewer-context.js';
/**
*
* @export
* @interface User
*/
export interface User {
/**
*
* @type {number}
* @memberof User
*/
'fid': number;
/**
*
* @type {string}
* @memberof User
*/
'username': string;
/**
*
* @type {string}
* @memberof User
*/
'displayName': string;
/**
*
* @type {UserPfp}
* @memberof User
*/
'pfp': UserPfp;
/**
*
* @type {UserProfile}
* @memberof User
*/
'profile': UserProfile;
/**
*
* @type {number}
* @memberof User
*/
'followerCount': number;
/**
*
* @type {number}
* @memberof User
*/
'followingCount': number;
/**
*
* @type {boolean}
* @memberof User
*/
'activeOnFcNetwork': boolean;
/**
*
* @type {string}
* @memberof User
*/
'referrerUsername': string;
/**
*
* @type {UserViewerContext}
* @memberof User
*/
'viewerContext': UserViewerContext;
}