# 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.OrganizationBody do @moduledoc """ Create B2B SSO Organization Request Body """ @derive Jason.Encoder defstruct [ :default_region, :domains, :label, :session_lifespan ] @type t :: %__MODULE__{ :default_region => String.t | nil, :domains => [String.t] | nil, :label => String.t | nil, :session_lifespan => String.t | nil } def decode(value) do value end end