/* 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 ApplicationMCPServerDTO */ export interface ApplicationMCPServerDTO { /** * * @type {string} * @memberof ApplicationMCPServerDTO */ applicationId?: string; /** * * @type {string} * @memberof ApplicationMCPServerDTO */ mcpServerId?: string; } /** * Check if a given object implements the ApplicationMCPServerDTO interface. */ export function instanceOfApplicationMCPServerDTO(value: object): value is ApplicationMCPServerDTO { return true; } export function ApplicationMCPServerDTOFromJSON(json: any): ApplicationMCPServerDTO { return ApplicationMCPServerDTOFromJSONTyped(json, false); } export function ApplicationMCPServerDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationMCPServerDTO { if (json == null) { return json; } return { 'applicationId': json['applicationId'] == null ? undefined : json['applicationId'], 'mcpServerId': json['mcpServerId'] == null ? undefined : json['mcpServerId'], }; } export function ApplicationMCPServerDTOToJSON(json: any): ApplicationMCPServerDTO { return ApplicationMCPServerDTOToJSONTyped(json, false); } export function ApplicationMCPServerDTOToJSONTyped(value?: ApplicationMCPServerDTO | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'applicationId': value['applicationId'], 'mcpServerId': value['mcpServerId'], }; }