Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

ContractBillingHistory

Properties

Name Type Description Notes
attributes ContractBillingHistoryResponseAttributes [optional]
metrics ContractlBillingHistoryResponseMetrics [optional]

Example

from hyperstack.models.contract_billing_history import ContractBillingHistory

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

# convert the object into a dict
contract_billing_history_dict = contract_billing_history_instance.to_dict()
# create an instance of ContractBillingHistory from a dict
contract_billing_history_from_dict = ContractBillingHistory.from_dict(contract_billing_history_dict)

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