/* tslint:disable */ /* eslint-disable */ /** * Tuix MCP Host API * Service managing MCP servers for Tuix applications. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; /** * * @export * @interface AccountDTO */ export interface AccountDTO { /** * * @type {string} * @memberof AccountDTO */ id?: string; } /** * Check if a given object implements the AccountDTO interface. */ export function instanceOfAccountDTO(value: object): value is AccountDTO { return true; } export function AccountDTOFromJSON(json: any): AccountDTO { return AccountDTOFromJSONTyped(json, false); } export function AccountDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountDTO { if (json == null) { return json; } return { 'id': json['id'] == null ? undefined : json['id'], }; } export function AccountDTOToJSON(json: any): AccountDTO { return AccountDTOToJSONTyped(json, false); } export function AccountDTOToJSONTyped(value?: AccountDTO | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'id': value['id'], }; }