/** * 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. */ /** * * @export * @interface Friend */ export interface Friend { /** * * @type {string} * @memberof Friend */ username?: string; /** * * @type {number} * @memberof Friend */ balance?: number; /** * * @type {number} * @memberof Friend */ referralCount?: number; } /** * Check if a given object implements the Friend interface. */ export declare function instanceOfFriend(value: object): boolean; export declare function FriendFromJSON(json: any): Friend; export declare function FriendFromJSONTyped(json: any, ignoreDiscriminator: boolean): Friend; export declare function FriendToJSON(value?: Friend | null): any;