import { get } from 'lodash'; export class KeyValue { key: number; value: string; constructor(data: unknown) { this.key = get(data, 'Key'); this.value = get(data, 'Value'); } }