factory OpsItemDataValue.fromJson(Map<String, dynamic> json) { return OpsItemDataValue( type: (json['Type'] as String?)?.toOpsItemDataType(), value: json['Value'] as String?, ); }