Hi Thomas,
You can get the properties of an object using getProperties() or getRecognitionProperties() method
For example, If we want to get properties of an 'X' object then we can we use the below code:
Hashtable<Object, Object> props = X().getProperties();
props.forEach((k,v)->System.out.println(k.toString() + " - "+v.toString()));
------------------------------
sravan kumar reddy koteru
------------------------------