You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for the two types of inheritance: Type- and implementation-inheritance.
For type inheritance add the keyword "inherits": "SomeOtherClass". This will create actual inheritance in the code (as far as it is supported) which will produce this kind of json when transmitted:
Add support for the two types of inheritance: Type- and implementation-inheritance.
For type inheritance add the keyword
"inherits": "SomeOtherClass"
. This will create actual inheritance in the code (as far as it is supported) which will produce this kind of json when transmitted:For implementation inheritance add the keyword
"embed": "SomeOtherClass"
. The generated code will then produce this kind of transmitted json:It simply embeds the field of
SomeOtherClass
.The text was updated successfully, but these errors were encountered: