Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

File metadata and controls

31 lines (22 loc) · 1.3 KB

ResourceBillingResponseForCustomer

Properties

Name Type Description Notes
calculated_resource_bills ResourceObjectResponseForCustomer [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.resource_billing_response_for_customer import ResourceBillingResponseForCustomer

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

# convert the object into a dict
resource_billing_response_for_customer_dict = resource_billing_response_for_customer_instance.to_dict()
# create an instance of ResourceBillingResponseForCustomer from a dict
resource_billing_response_for_customer_from_dict = ResourceBillingResponseForCustomer.from_dict(resource_billing_response_for_customer_dict)

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