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
Current section
Files
lib/ory/model/ui_node_image_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.UiNodeImageAttributes do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:height,
:id,
:node_type,
:src,
:width
]
@type t :: %__MODULE__{
:height => integer(),
:id => String.t,
:node_type => String.t,
:src => String.t,
:width => integer()
}
end
defimpl Poison.Decoder, for: Ory.Model.UiNodeImageAttributes do
def decode(value, _options) do
value
end
end