In type information, entity types are never final

In 9.0, PolicyCenter changed how Gosu handles entity finality from Gosu using the entity type information property Final. This is the property that you access with an entity type such as Address.Type.Final or with an entity instance as myObj.IntrinsicType.Final.

In version 8.0:

  • If the data model definition declared an entity with the final attribute set to true, the Final property has the value true. Otherwise it has the value false.

In version 9.0:

  • The Final property always has the value false.

If you want the version 8.0 behavior, change your code to use the new property Final_Entity instead of Final. This new property is intended only for upgrading existing code. Do not use it for new code.