# UsageStats ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **current** | **float** | | **max_allowed_24h** | **float** | | **cost_unit** | **str** | | ## Example ```python from h2ogpte.rest.models.usage_stats import UsageStats # TODO update the JSON string below json = "{}" # create an instance of UsageStats from a JSON string usage_stats_instance = UsageStats.from_json(json) # print the JSON string representation of the object print(UsageStats.to_json()) # convert the object into a dict usage_stats_dict = usage_stats_instance.to_dict() # create an instance of UsageStats from a dict usage_stats_from_dict = UsageStats.from_dict(usage_stats_dict) ```