/** * Nominex TMA API * API config for Nominex TMA * * The version of the OpenAPI document: 0.0.17 * * * 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 { FarmingState } from './FarmingState'; /** * * @export * @interface UserInformation */ export interface UserInformation { /** * * @type {string} * @memberof UserInformation */ username?: string; /** * * @type {string} * @memberof UserInformation */ email?: string; /** * * @type {number} * @memberof UserInformation */ balance?: number; /** * * @type {number} * @memberof UserInformation */ refId?: number; /** * * @type {FarmingState} * @memberof UserInformation */ farmingState?: FarmingState; } /** * Check if a given object implements the UserInformation interface. */ export declare function instanceOfUserInformation(value: object): boolean; export declare function UserInformationFromJSON(json: any): UserInformation; export declare function UserInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserInformation; export declare function UserInformationToJSON(value?: UserInformation | null): any;