Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

BillingResponse.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

BillingResponse

Properties

Name Type Description Notes
calculated_bills List[OrganizationObjectResponse] [optional]
calculation_time datetime [optional]
type str [optional]

Example

from hyperstack.models.billing_response import BillingResponse

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

# convert the object into a dict
billing_response_dict = billing_response_instance.to_dict()
# create an instance of BillingResponse from a dict
billing_response_from_dict = BillingResponse.from_dict(billing_response_dict)

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