I have created an Information Point which basically works so now I also want to create a metric based on the return value.- Only thing is that the return value is a Boolean so how do I cast it to an Integer (with a Getter Chain I suppose)?
Hi Hendrik, you can use normal toInt() or toString() for text values
Example
getBody().toInt()
or
getBody().toInteger()
Can't remember 100% if it's toInt()or toInteger()
Hi Hendrik, you can use normal toInt() or toString() for text values
Example
getBody().toInt()
or
getBody().toInteger()
Can't remember 100% if it's toInt()or toInteger()
Thank you.
I got this to work based on a .Net application:
ReturnValue.Success().Convert.ToInt32()