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 update_login_flow_body.ex
Raw

lib/ory/model/update_login_flow_body.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Ory.Model.UpdateLoginFlowBody do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:csrf_token,
:identifier,
:method,
:password,
:password_identifier,
:transient_payload,
:id_token,
:id_token_nonce,
:provider,
:traits,
:upstream_parameters,
:totp_code,
:webauthn_login,
:lookup_secret,
:address,
:code,
:resend,
:passkey_login
]
@type t :: %__MODULE__{
:csrf_token => String.t,
:identifier => String.t,
:method => String.t,
:password => String.t,
:password_identifier => String.t | nil,
:transient_payload => map() | nil,
:id_token => String.t | nil,
:id_token_nonce => String.t | nil,
:provider => String.t,
:traits => map() | nil,
:upstream_parameters => map() | nil,
:totp_code => String.t,
:webauthn_login => String.t | nil,
:lookup_secret => String.t,
:address => String.t | nil,
:code => String.t | nil,
:resend => String.t | nil,
:passkey_login => String.t | nil
}
def decode(value) do
value
end
end