Sha256: 3871068bfe376b3d1343c466d46a80966267a244caccbd7d4548e541b9327ecc
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 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.8.2-alpha.1 Contact: hi@ory.sh Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.2.1 =end require 'date' require 'time' module OryKratosClient module UiNodeAttributes class << self # List of class defined in oneOf (OpenAPI v3) def openapi_one_of [ :'UiNodeAnchorAttributes', :'UiNodeImageAttributes', :'UiNodeInputAttributes', :'UiNodeScriptAttributes', :'UiNodeTextAttributes' ] end # Discriminator's property name (OpenAPI v3) def openapi_discriminator_name :'node_type' end # Discriminator's mapping (OpenAPI v3) def openapi_discriminator_mapping { :'anchor' => :'UiNodeAnchorAttributes', :'image' => :'UiNodeImageAttributes', :'input' => :'UiNodeInputAttributes', :'script' => :'UiNodeScriptAttributes', :'text' => :'UiNodeTextAttributes' } 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 OryKratosClient.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.8.2.alpha1 | lib/ory-kratos-client/models/ui_node_attributes.rb |