Sha256: d427968ffe45c141cfc7d5d1402b596cb971f0864e73ca85fedb355e3fc77399
Contents?: true
Size: 1.65 KB
Versions: 1
Compression:
Stored size: 1.65 KB
Contents
=begin #Ory Kratos API #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests. The version of the OpenAPI document: v0.7.1-alpha.1 Contact: hi@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.1.1 =end require 'date' require 'time' module OryHydraClient module SubmitSelfServiceRecoveryFlowBody class << self # List of class defined in oneOf (OpenAPI v3) def openapi_one_of [ :'SubmitSelfServiceRecoveryFlowWithLinkMethodBody' ] end # Discriminator's property name (OpenAPI v3) def openapi_discriminator_name :'method' end # Discriminator's mapping (OpenAPI v3) def openapi_discriminator_mapping { :'link' => :'SubmitSelfServiceRecoveryFlowWithLinkMethodBody' } 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 unless discriminator_value klass = openapi_discriminator_mapping[discriminator_value.to_sym] return nil unless klass OryHydraClient.const_get(klass).build_from_hash(data) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ory-kratos-client-0.7.1.alpha1 | lib/ory-kratos-client/models/submit_self_service_recovery_flow_body.rb |