# 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.LoginFlowTestContext do @moduledoc """ Admin-test extension of a login flow. Populated only for flows created by the admin test endpoint; included in the flow's API response so the admin UI can render the pre-scoped provider and (once captured) the debug round-trip result. """ @derive Jason.Encoder defstruct [ :debug_payload, :provider_id ] @type t :: %__MODULE__{ :debug_payload => Ory.Model.LoginFlowTestDebugPayload.t | nil, :provider_id => String.t } alias Ory.Deserializer def decode(value) do value |> Deserializer.deserialize(:debug_payload, :struct, Ory.Model.LoginFlowTestDebugPayload) end end