I have an azure function based on the http post template. I expanded the json from 1 prop to 3.
let versionJ = json.["version"]
let customerIdJ = json.["customerId"]
let stationIdJ = json.["stationId"]
match isNull versionJ with
What is the best way to check for null across all three? Use a tulple?
match isNull versionJ, isNull customerIdJ, isNull stationIdJ with