Returns the list of classes defined in oneOf.
require 'sunshine-conversations-client'
SunshineConversationsClient::Content.openapi_one_of
# =>
# [
# :'CarouselMessage',
# :'FileMessage',
# :'FormMessage',
# :'FormResponseMessage',
# :'ImageMessage',
# :'ListMessage',
# :'LocationMessage',
# :'TemplateMessage',
# :'TextMessage'
# ]Returns the discriminator's property name.
require 'sunshine-conversations-client'
SunshineConversationsClient::Content.openapi_discriminator_name
# => :'type'Returns the discriminator's mapping.
require 'sunshine-conversations-client'
SunshineConversationsClient::Content.openapi_discriminator_mapping
# =>
# {
# :'carousel' => :'CarouselMessage',
# :'file' => :'FileMessage',
# :'form' => :'FormMessage',
# :'formResponse' => :'FormResponseMessage',
# :'image' => :'ImageMessage',
# :'list' => :'ListMessage',
# :'location' => :'LocationMessage',
# :'template' => :'TemplateMessage',
# :'text' => :'TextMessage'
# }Find the appropriate object from the openapi_one_of list and casts the data into it.
require 'sunshine-conversations-client'
SunshineConversationsClient::Content.build(data)
# => #<CarouselMessage:0x00007fdd4aab02a0>
SunshineConversationsClient::Content.build(data_that_doesnt_match)
# => nil| Name | Type | Description |
|---|---|---|
| data | Mixed | data to be matched against the list of oneOf items |
CarouselMessageFileMessageFormMessageFormResponseMessageImageMessageListMessageLocationMessageTemplateMessageTextMessagenil(if no type matches)