full_name property based on a first_name and last_name property. You can do this by using a computed property:
Requirements for Computed Properties
Again there are a few conditions for this approach:1
Use a sole property
You must always use a sole property, a property within the constructor definition won’t work
2
Cannot be set in payload
Computed properties cannot be defined in the payload, a
CannotSetComputedValue will be thrown if this is the case3
Silent mode available
If the
ignore_exception_when_trying_to_set_computed_property_value configuration option is set to true, the computed property will be silently ignored when trying to set it in the payload and no CannotSetComputedValue exception will be thrown