Returns the list of classes defined in oneOf.
require 'intersight_client'
IntersightClient::OprsSyncTargetListMessageResponse.openapi_one_of
# =>
# [
# :'MoAggregateTransform',
# :'MoDocumentCount',
# :'MoTagSummary',
# :'OprsSyncTargetListMessageList'
# ]Returns the discriminator's property name.
require 'intersight_client'
IntersightClient::OprsSyncTargetListMessageResponse.openapi_discriminator_name
# => :'object_type'Returns the discriminator's mapping.
require 'intersight_client'
IntersightClient::OprsSyncTargetListMessageResponse.openapi_discriminator_mapping
# =>
# {
# :'mo.AggregateTransform' => :'MoAggregateTransform',
# :'mo.DocumentCount' => :'MoDocumentCount',
# :'mo.TagSummary' => :'MoTagSummary',
# :'oprs.SyncTargetListMessage.List' => :'OprsSyncTargetListMessageList'
# }
### build
Find the appropriate object from the `openapi_one_of` list and casts the data into it.
#### Example
```ruby
require 'intersight_client'
IntersightClient::OprsSyncTargetListMessageResponse.build(data)
# => #<MoAggregateTransform:0x00007fdd4aab02a0>
IntersightClient::OprsSyncTargetListMessageResponse.build(data_that_doesnt_match)
# => nil| Name | Type | Description |
|---|---|---|
| data | Mixed | data to be matched against the list of oneOf items |
MoAggregateTransformMoDocumentCountMoTagSummaryOprsSyncTargetListMessageListnil(if no type matches)