Packages

OpenAPI API client for Ory Kratos, Ory's central identity management solution with hardened authentication, MFA, FIDO2, TOTP, WebAuthn, SSO, profile management, and more.

Current section

Files

Jump to
ory_kratos lib ory model ui_node_text_attributes.ex
Raw

lib/ory/model/ui_node_text_attributes.ex

# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule Ory.Model.UiNodeTextAttributes do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:id,
:node_type,
:text
]
@type t :: %__MODULE__{
:id => String.t,
:node_type => String.t,
:text => Ory.Model.UiText.t
}
end
defimpl Poison.Decoder, for: Ory.Model.UiNodeTextAttributes do
import Ory.Deserializer
def decode(value, options) do
value
|> deserialize(:text, :struct, Ory.Model.UiText, options)
end
end