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

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

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

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