# 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.CloudAccount do @moduledoc """ """ @derive Jason.Encoder defstruct [ :break_glass, :email, :email_verified, :id, :name, :organization_id ] @type t :: %__MODULE__{ :break_glass => boolean() | nil, :email => String.t, :email_verified => boolean(), :id => String.t, :name => String.t, :organization_id => String.t | nil } def decode(value) do value end end