Objects have attributes like "centerObjects" that are accessed using dot notation, where can I find the full list of these attributes accessible by dot notation?
For example, we can use a script to find the center point objects of a decision point, "DP1"
model.find("DP1").as(Object).centerObjects[1]
model.find("DP1").as(Object).centerObjects[2]
From the model tree view, the DP1 node has properties include classes, labels, objectinfo but these aren't accessible using: model.find("DP1").as(Object).classes
my question is: What is accessible using this syntax? Is there a list documented?