# OryClient::UpdateLoginFlowBody ## Class instance methods ### `openapi_one_of` Returns the list of classes defined in oneOf. #### Example ```ruby require 'ory-client' OryClient::UpdateLoginFlowBody.openapi_one_of # => # [ # :'UpdateLoginFlowWithCodeMethod', # :'UpdateLoginFlowWithLookupSecretMethod', # :'UpdateLoginFlowWithOidcMethod', # :'UpdateLoginFlowWithPasskeyMethod', # :'UpdateLoginFlowWithPasswordMethod', # :'UpdateLoginFlowWithTotpMethod', # :'UpdateLoginFlowWithWebAuthnMethod' # ] ``` ### `openapi_discriminator_name` Returns the discriminator's property name. #### Example ```ruby require 'ory-client' OryClient::UpdateLoginFlowBody.openapi_discriminator_name # => :'method' ``` ### `openapi_discriminator_name` Returns the discriminator's mapping. #### Example ```ruby require 'ory-client' OryClient::UpdateLoginFlowBody.openapi_discriminator_mapping # => # { # :'code' => :'UpdateLoginFlowWithCodeMethod', # :'lookup_secret' => :'UpdateLoginFlowWithLookupSecretMethod', # :'oidc' => :'UpdateLoginFlowWithOidcMethod', # :'passkey' => :'UpdateLoginFlowWithPasskeyMethod', # :'password' => :'UpdateLoginFlowWithPasswordMethod', # :'totp' => :'UpdateLoginFlowWithTotpMethod', # :'webauthn' => :'UpdateLoginFlowWithWebAuthnMethod' # } ``` ### build Find the appropriate object from the `openapi_one_of` list and casts the data into it. #### Example ```ruby require 'ory-client' OryClient::UpdateLoginFlowBody.build(data) # => # OryClient::UpdateLoginFlowBody.build(data_that_doesnt_match) # => nil ``` #### Parameters | Name | Type | Description | | ---- | ---- | ----------- | | **data** | **Mixed** | data to be matched against the list of oneOf items | #### Return type - `UpdateLoginFlowWithCodeMethod` - `UpdateLoginFlowWithLookupSecretMethod` - `UpdateLoginFlowWithOidcMethod` - `UpdateLoginFlowWithPasskeyMethod` - `UpdateLoginFlowWithPasswordMethod` - `UpdateLoginFlowWithTotpMethod` - `UpdateLoginFlowWithWebAuthnMethod` - `nil` (if no type matches)