lib/ory/model/cloud_account.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.CloudAccount do
  @moduledoc """
  
  """

  @derive Jason.Encoder
  defstruct [
    :email,
    :id,
    :name
  ]

  @type t :: %__MODULE__{
    :email => String.t | nil,
    :id => String.t | nil,
    :name => String.t | nil
  }

  def decode(value) do
    value
  end
end