# NOTE: This file is auto generated by OpenAPI Generator 6.6.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.GetOrganizationResponse do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :organization ] @type t :: %__MODULE__{ :organization => Ory.Model.Organization.t } end defimpl Poison.Decoder, for: Ory.Model.GetOrganizationResponse do import Ory.Deserializer def decode(value, options) do value |> deserialize(:organization, :struct, Ory.Model.Organization, options) end end