Name | Type | Description | Notes |
---|---|---|---|
calculated_bills | List[OrganizationObjectResponse] | [optional] | |
calculation_time | datetime | [optional] | |
type | str | [optional] |
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)