Returns the list of classes defined in oneOf.
require 'synctera'
Synctera::CardResponse.openapi_one_of
# =>
# [
# :'PhysicalCardResponse',
# :'VirtualCardResponse'
# ]
Returns the discriminator's property name.
require 'synctera'
Synctera::CardResponse.openapi_discriminator_name
# => :'form'
Returns the discriminator's mapping.
require 'synctera'
Synctera::CardResponse.openapi_discriminator_mapping
# =>
# {
# :'PHYSICAL' => :'PhysicalCardResponse',
# :'VIRTUAL' => :'VirtualCardResponse'
# }
Find the appropriate object from the openapi_one_of
list and casts the data into it.
require 'synctera'
Synctera::CardResponse.build(data)
# => #<PhysicalCardResponse:0x00007fdd4aab02a0>
Synctera::CardResponse.build(data_that_doesnt_match)
# => nil
Name | Type | Description |
---|---|---|
data | Mixed | data to be matched against the list of oneOf items |
PhysicalCardResponse
VirtualCardResponse
nil
(if no type matches)