import { Input } from '../Input' import { InputType } from '../Input' export class Delete extends Input { private messageId: string; constructor(name: string, messageId: string) { super(InputType.Delete, name); this.messageId = messageId; } get MessageId(): string { return this.messageId; } toJSON(): any { return { type: this.Type, name: this.Name, value: this.Value, importance: this.Importance, attributes: { message_id: this.messageId } } } }