| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[UsageResultItems] | [optional] | |
| time | int | [optional] |
from instana_client.models.usage_result import UsageResult
# TODO update the JSON string below
json = "{}"
# create an instance of UsageResult from a JSON string
usage_result_instance = UsageResult.from_json(json)
# print the JSON string representation of the object
print(UsageResult.to_json())
# convert the object into a dict
usage_result_dict = usage_result_instance.to_dict()
# create an instance of UsageResult from a dict
usage_result_from_dict = UsageResult.from_dict(usage_result_dict)