1 KiB
1 KiB
UsageResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| agent_id | str | ||
| daily_calls | int | ||
| free_limit | int | ||
| paid_calls | int | ||
| total_usd | float | ||
| recent_receipts | List[Dict[str, object]] | [optional] |
Example
from rugmunch.models.usage_response import UsageResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UsageResponse from a JSON string
usage_response_instance = UsageResponse.from_json(json)
# print the JSON string representation of the object
print(UsageResponse.to_json())
# convert the object into a dict
usage_response_dict = usage_response_instance.to_dict()
# create an instance of UsageResponse from a dict
usage_response_from_dict = UsageResponse.from_dict(usage_response_dict)