/** * Elrest eDesign Runtime IPC Typescript Messages Instance * * @copyright 2024 Elrest Automations Systeme GMBH */ import { AbstractMessage } from '../AbstractMessage'; import { Type } from '../Type'; import { Instance } from '../../Model/Instance'; /** @codex-xmi-id 7e36272c-18e3-5833-9568-2ff31c11b5f3 */ export declare class DetailResponse extends AbstractMessage { type: Type; body: Instance; }