I'm using an api endpoint and they are returning invalid responses in some of the fields instead of null values for decimals. here is an example
{
"name": "MyName",
"decimalOne": "0.01",
"decimalTwo": "None",
"decimalThree": "-"
}
I would like my code to handle these custom "null" things they are sending me as just regular nulls. Is there a way for me to do this?