UNPKG

vehicle-history-model

Version:
25 lines (20 loc) 743 B
const assert = require('assert-plus'); require('../../date'); const logger = require('../../logger/logger').logger; const DeregistrationEventBuilder = require('../../model/response/event/deregistrationEvent').DeregistrationEventBuilder; const build = function build(event) { logger.debug('build deregistration event:', event); assert.object(event, 'event'); assert.string(event.type, 'event.type'); assert.string(event.createdAt, 'event.createdAt'); assert.string(event.description, 'event.description'); return new DeregistrationEventBuilder() .withType(event.type) .withCreatedAt(event.createdAt) .withDescription(event.description) .withNote(event.note) .build(); }; module.exports = { build: build };