# 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.Organization do @moduledoc """ B2B SSO Organization """ @derive [Poison.Encoder] defstruct [ :created_at, :domains, :id, :label, :project_id, :updated_at ] @type t :: %__MODULE__{ :created_at => DateTime.t, :domains => [String.t], :id => String.t, :label => String.t, :project_id => String.t, :updated_at => DateTime.t } end defimpl Poison.Decoder, for: Ory.Model.Organization do def decode(value, _options) do value end end