Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

BillingMetricesResponse

Properties

Name Type Description Notes
data List[BillingMetricesFields] [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.billing_metrices_response import BillingMetricesResponse

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

# convert the object into a dict
billing_metrices_response_dict = billing_metrices_response_instance.to_dict()
# create an instance of BillingMetricesResponse from a dict
billing_metrices_response_from_dict = BillingMetricesResponse.from_dict(billing_metrices_response_dict)

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