lib/ory/model/identity_with_credentials_oidc_config_provider.ex

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

defmodule Ory.Model.IdentityWithCredentialsOidcConfigProvider do
  @moduledoc """
  Create Identity and Import Social Sign In Credentials Configuration
  """

  @derive Jason.Encoder
  defstruct [
    :provider,
    :subject
  ]

  @type t :: %__MODULE__{
    :provider => String.t,
    :subject => String.t
  }

  def decode(value) do
    value
  end
end