lib/ory/model/internal_is_owner_for_project_by_slug_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.InternalIsOwnerForProjectBySlugBody do
  @moduledoc """
  Is Owner For Project By Slug Request Body
  """

  @derive Jason.Encoder
  defstruct [
    :namespace,
    :project_scope,
    :project_slug,
    :subject
  ]

  @type t :: %__MODULE__{
    :namespace => String.t,
    :project_scope => String.t | nil,
    :project_slug => String.t,
    :subject => String.t
  }

  def decode(value) do
    value
  end
end