export class Request { public method: string; public path: string; /** * Construct the basis of request * @param {string} method - POST/PUT/PATCH * @param {string} path */ constructor(method: 'POST' | 'PATCH' | 'PUT', path: string) { this.method = method; this.path = path; } getTimestamp(): number { return 0; } getPayload(): object { return {}; } }