lib/ory/model/update_settings_flow_with_oidc_method.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech).
# Do not edit this file manually.

defmodule Ory.Model.UpdateSettingsFlowWithOidcMethod do
  @moduledoc """
  Update Settings Flow with OpenID Connect Method
  """

  @derive [Poison.Encoder]
  defstruct [
    :flow,
    :link,
    :method,
    :traits,
    :unlink,
    :upstream_parameters
  ]

  @type t :: %__MODULE__{
    :flow => String.t | nil,
    :link => String.t | nil,
    :method => String.t,
    :traits => map() | nil,
    :unlink => String.t | nil,
    :upstream_parameters => map() | nil
  }
end

defimpl Poison.Decoder, for: Ory.Model.UpdateSettingsFlowWithOidcMethod do
  def decode(value, _options) do
    value
  end
end