Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 993 Bytes

File metadata and controls

30 lines (21 loc) · 993 Bytes

DeploymentUsage

Properties

Name Type Description Notes
metric Dict[str, str]
values List[DeploymentUsageValue]

Example

from platform_api_python_client.models.deployment_usage import DeploymentUsage

# TODO update the JSON string below
json = "{}"
# create an instance of DeploymentUsage from a JSON string
deployment_usage_instance = DeploymentUsage.from_json(json)
# print the JSON string representation of the object
print(DeploymentUsage.to_json())

# convert the object into a dict
deployment_usage_dict = deployment_usage_instance.to_dict()
# create an instance of DeploymentUsage from a dict
deployment_usage_from_dict = DeploymentUsage.from_dict(deployment_usage_dict)

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