lib/ory/model/organization_body.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.OrganizationBody do
  @moduledoc """
  Create B2B SSO Organization Request Body
  """

  @derive Jason.Encoder
  defstruct [
    :domains,
    :label
  ]

  @type t :: %__MODULE__{
    :domains => [String.t] | nil,
    :label => String.t | nil
  }

  def decode(value) do
    value
  end
end