/** * 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 { Friend } from './Friend'; /** * * @export * @interface FriendsList */ export interface FriendsList { /** * * @type {number} * @memberof FriendsList */ unclaimed?: number; /** * * @type {Array} * @memberof FriendsList */ friends?: Array; } /** * Check if a given object implements the FriendsList interface. */ export declare function instanceOfFriendsList(value: object): boolean; export declare function FriendsListFromJSON(json: any): FriendsList; export declare function FriendsListFromJSONTyped(json: any, ignoreDiscriminator: boolean): FriendsList; export declare function FriendsListToJSON(value?: FriendsList | null): any;