/** * Elrest eDesign Runtime IPC Typescript Messages Instance * * @copyright 2024 Elrest Automations Systeme GMBH */ import { Log } from '../../Model/Instance/Log'; import { AbstractMessage } from '../AbstractMessage'; import { Type } from '../Type'; import { Response } from './../../Model/Pagination/Response'; export declare class ListLogResponse extends AbstractMessage { type: Type; body: Response; }