Different between 'o' and arrow symbol used in .cto file?
问题 I am bit confused between 'o' and '-->' used in Model file, For example : asset Field identified by assetId { o String assetId o Customer owner --> Customer custId } participant Customer identified by customerId { o String customerId } what is difference between "o Customer owner" and "--> Customer custId"? 回答1: The o indicates that this is an o wned property of a class. Aka a "field". That means that when the instance of the class is removed, so are all its properties. The --> indicates that