import { NodeRequestType } from "./NodeRequestType"; export class NodeRequest { payload: string; type: NodeRequestType; constructor(payload: string, type: NodeRequestType) { if (payload == null) { throw new Error("payload cannot be null"); } this.payload = payload; this.type = type; } }