Accesses asset properties by using dot notation. You can access any public "get" method on RAMAsset by using this property helper. If any objects that are returned by those methods have public "get" methods, you can access those methods also. You can also access arrays and lists by using index notation, such as myArray[0].someMethod.
Print the name of an asset
<propertyHelper />
<asset id="myAsset" guid="{0000-1111-2222}" version="1.0" />
<echo message="${myAsset.name}" />
Print the name and description of the asset type of an asset
<propertyHelper />
<asset id="myAsset" guid="{0000-1111-2222}" version="1.0" />
<echo message="${myAsset.assetType.name}: ${myAsset.assetType.description}" />
Print the name and description of the attribute of an asset
<propertyHelper />
<asset id="myAsset" guid="{0000-1111-2222}" version="1.0" />
<echo message="${myAsset.assetAttributes[0].name}: ${myAsset.assetAttributes[0].description}" />