Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.44 KB

File metadata and controls

33 lines (24 loc) · 1.44 KB

ResourceLevelBillingHistoryResponseAttributes

Properties

Name Type Description Notes
contract_id int [optional]
id str [optional]
infrahub_id int [optional]
resource_name str [optional]
status str [optional]

Example

from hyperstack.models.resource_level_billing_history_response_attributes import ResourceLevelBillingHistoryResponseAttributes

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

# convert the object into a dict
resource_level_billing_history_response_attributes_dict = resource_level_billing_history_response_attributes_instance.to_dict()
# create an instance of ResourceLevelBillingHistoryResponseAttributes from a dict
resource_level_billing_history_response_attributes_from_dict = ResourceLevelBillingHistoryResponseAttributes.from_dict(resource_level_billing_history_response_attributes_dict)

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