Sha256: 9131010eeb0ff11a95f8d126271b7fcdf350c5c3bedeb76a644cb134c96c53f2

Contents?: true

Size: 1.95 KB

Versions: 1

Compression:

Stored size: 1.95 KB

Contents

=begin
#Ory APIs

#Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. 

The version of the OpenAPI document: v1.8.0
Contact: support@ory.sh
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 7.3.0

=end

require 'date'
require 'time'

module OryClient
  # Update Settings Flow Request Body
  module UpdateSettingsFlowBody
    class << self
      # List of class defined in oneOf (OpenAPI v3)
      def openapi_one_of
        [
          :'UpdateSettingsFlowWithLookupMethod',
          :'UpdateSettingsFlowWithOidcMethod',
          :'UpdateSettingsFlowWithPasswordMethod',
          :'UpdateSettingsFlowWithProfileMethod',
          :'UpdateSettingsFlowWithTotpMethod',
          :'UpdateSettingsFlowWithWebAuthnMethod'
        ]
      end

      # Discriminator's property name (OpenAPI v3)
      def openapi_discriminator_name
        :'method'
      end

      # Discriminator's mapping (OpenAPI v3)
      def openapi_discriminator_mapping
        {
          :'lookup_secret' => :'UpdateSettingsFlowWithLookupMethod',
          :'oidc' => :'UpdateSettingsFlowWithOidcMethod',
          :'password' => :'UpdateSettingsFlowWithPasswordMethod',
          :'profile' => :'UpdateSettingsFlowWithProfileMethod',
          :'totp' => :'UpdateSettingsFlowWithTotpMethod',
          :'webauthn' => :'UpdateSettingsFlowWithWebAuthnMethod'
        }
      end

      # Builds the object
      # @param [Mixed] Data to be matched against the list of oneOf items
      # @return [Object] Returns the model or the data itself
      def build(data)
        discriminator_value = data[openapi_discriminator_name]
        return nil if discriminator_value.nil?

        klass = openapi_discriminator_mapping[discriminator_value.to_s.to_sym]
        return nil unless klass

        OryClient.const_get(klass).build_from_hash(data)
      end
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ory-client-1.8.0 lib/ory-client/models/update_settings_flow_body.rb