Returns the list of classes defined in oneOf.
require 'synctera'
Synctera::TemplateFields.openapi_one_of
# =>
# [
# :'TemplateFieldsChargeSecured',
# :'TemplateFieldsChargeUnsecured',
# :'TemplateFieldsDepository',
# :'TemplateFieldsGeneralLedger',
# :'TemplateFieldsLineOfCredit'
# ]
Returns the discriminator's property name.
require 'synctera'
Synctera::TemplateFields.openapi_discriminator_name
# => :'account_type'
Returns the discriminator's mapping.
require 'synctera'
Synctera::TemplateFields.openapi_discriminator_mapping
# =>
# {
# :'CHARGE_SECURED' => :'TemplateFieldsChargeSecured',
# :'CHARGE_UNSECURED' => :'TemplateFieldsChargeUnsecured',
# :'CHECKING' => :'TemplateFieldsDepository',
# :'GENERAL_LEDGER' => :'TemplateFieldsGeneralLedger',
# :'LINE_OF_CREDIT' => :'TemplateFieldsLineOfCredit',
# :'SAVING' => :'TemplateFieldsDepository'
# }
Find the appropriate object from the openapi_one_of
list and casts the data into it.
require 'synctera'
Synctera::TemplateFields.build(data)
# => #<TemplateFieldsChargeSecured:0x00007fdd4aab02a0>
Synctera::TemplateFields.build(data_that_doesnt_match)
# => nil
Name | Type | Description |
---|---|---|
data | Mixed | data to be matched against the list of oneOf items |
TemplateFieldsChargeSecured
TemplateFieldsChargeUnsecured
TemplateFieldsDepository
TemplateFieldsGeneralLedger
TemplateFieldsLineOfCredit
nil
(if no type matches)