lib/ory/model/quota_usage.ex

# 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.QuotaUsage do
  @moduledoc """
  
  """

  @derive Jason.Encoder
  defstruct [
    :additional_price,
    :can_use_more,
    :feature,
    :feature_available,
    :included,
    :is_unlimited,
    :used
  ]

  @type t :: %__MODULE__{
    :additional_price => String.t,
    :can_use_more => boolean(),
    :feature => String.t,
    :feature_available => boolean(),
    :included => integer(),
    :is_unlimited => boolean(),
    :used => integer()
  }

  def decode(value) do
    value
  end
end