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

  @derive Jason.Encoder
  defstruct [
    :organization
  ]

  @type t :: %__MODULE__{
    :organization => Ory.Model.Organization.t
  }

  alias Ory.Deserializer

  def decode(value) do
    value
     |> Deserializer.deserialize(:organization, :struct, Ory.Model.Organization)
  end
end