export default class ValidationError { constructor(resp: Record) { for (const key in resp) { (this as any)[key] = resp[key]; } } }