Rate limits and quotas for a subscription tier.
| Name | Type | Description | Notes |
|---|---|---|---|
| requests_per_minute | int | Maximum requests per minute (None = unlimited) | [optional] |
| requests_per_hour | int | Maximum requests per hour (None = unlimited) | [optional] |
| requests_per_day | int | Maximum requests per day (None = unlimited) | [optional] |
| requests_per_month | int | Maximum requests per month (None = unlimited) | [optional] |
from mixpeek.models.tier_limits import TierLimits
# TODO update the JSON string below
json = "{}"
# create an instance of TierLimits from a JSON string
tier_limits_instance = TierLimits.from_json(json)
# print the JSON string representation of the object
print(TierLimits.to_json())
# convert the object into a dict
tier_limits_dict = tier_limits_instance.to_dict()
# create an instance of TierLimits from a dict
tier_limits_from_dict = TierLimits.from_dict(tier_limits_dict)