Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

Billingmetricesresponse.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

Billingmetricesresponse

Properties

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

Example

from hyperstack.models.billingmetricesresponse import Billingmetricesresponse

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

# convert the object into a dict
billingmetricesresponse_dict = billingmetricesresponse_instance.to_dict()
# create an instance of Billingmetricesresponse from a dict
billingmetricesresponse_form_dict = billingmetricesresponse.from_dict(billingmetricesresponse_dict)

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