lib/ory/model/organization.ex
# 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 [
:domains,
:id,
:label,
:project_id
]
@type t :: %__MODULE__{
:domains => [String.t],
:id => String.t,
:label => String.t,
:project_id => String.t
}
end
defimpl Poison.Decoder, for: Ory.Model.Organization do
def decode(value, _options) do
value
end
end