Sha256: e185e46a003b3c38f363ae5a329859b9ba32e9539b83d497b5146d602fac29f2
Contents?: true
Size: 1.76 KB
Versions: 32
Compression:
Stored size: 1.76 KB
Contents
# OryClient::UpdateRegistrationFlowBody ## Class instance methods ### `openapi_one_of` Returns the list of classes defined in oneOf. #### Example ```ruby require 'ory-client' OryClient::UpdateRegistrationFlowBody.openapi_one_of # => # [ # :'UpdateRegistrationFlowWithCodeMethod', # :'UpdateRegistrationFlowWithOidcMethod', # :'UpdateRegistrationFlowWithPasswordMethod', # :'UpdateRegistrationFlowWithWebAuthnMethod' # ] ``` ### `openapi_discriminator_name` Returns the discriminator's property name. #### Example ```ruby require 'ory-client' OryClient::UpdateRegistrationFlowBody.openapi_discriminator_name # => :'method' ``` ### `openapi_discriminator_name` Returns the discriminator's mapping. #### Example ```ruby require 'ory-client' OryClient::UpdateRegistrationFlowBody.openapi_discriminator_mapping # => # { # :'code' => :'UpdateRegistrationFlowWithCodeMethod', # :'oidc' => :'UpdateRegistrationFlowWithOidcMethod', # :'password' => :'UpdateRegistrationFlowWithPasswordMethod', # :'webauthn' => :'UpdateRegistrationFlowWithWebAuthnMethod' # } ### build Find the appropriate object from the `openapi_one_of` list and casts the data into it. #### Example ```ruby require 'ory-client' OryClient::UpdateRegistrationFlowBody.build(data) # => #<UpdateRegistrationFlowWithCodeMethod:0x00007fdd4aab02a0> OryClient::UpdateRegistrationFlowBody.build(data_that_doesnt_match) # => nil ``` #### Parameters | Name | Type | Description | | ---- | ---- | ----------- | | **data** | **Mixed** | data to be matched against the list of oneOf items | #### Return type - `UpdateRegistrationFlowWithCodeMethod` - `UpdateRegistrationFlowWithOidcMethod` - `UpdateRegistrationFlowWithPasswordMethod` - `UpdateRegistrationFlowWithWebAuthnMethod` - `nil` (if no type matches)
Version data entries
32 entries across 32 versions & 1 rubygems