Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

TierLimits

Rate limits and quotas for a subscription tier.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]