# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Ory.Model.InviteQuota do
@moduledoc """
Project invite quota
"""
@derive [Poison.Encoder]
defstruct [
:project_id,
:remaining_seats,
:total_seats
]
@type t :: %__MODULE__{
:project_id => String.t | nil,
:remaining_seats => integer() | nil,
:total_seats => integer() | nil
}
end
defimpl Poison.Decoder, for: Ory.Model.InviteQuota do
def decode(value, _options) do
value
end
end