UNPKG

@standard-crypto/farcaster-js-warpcast

Version:

A tool for interacting with the private APIs of the Warpcast client.

39 lines (38 loc) 925 B
/** * 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 { User } from './user.js'; import { V2UserGet200ResponseResultExtras } from './v2-user-get200-response-result-extras.js'; /** * * @export * @interface V2UserGet200ResponseResult */ export interface V2UserGet200ResponseResult { /** * * @type {User} * @memberof V2UserGet200ResponseResult */ 'user': User; /** * * @type {Array<object>} * @memberof V2UserGet200ResponseResult */ 'collectionsOwned': Array<object>; /** * * @type {V2UserGet200ResponseResultExtras} * @memberof V2UserGet200ResponseResult */ 'extras': V2UserGet200ResponseResultExtras; }