factory Target.fromJson(Map<String, dynamic> json) { return Target( type: (json['Type'] as String).toTargetType(), id: json['Id'] as String?, ); }