Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

BillingHistoryServerlessInference

Properties

Name Type Description Notes
billing_history List[BillingHistory] [optional]
org_id int [optional]
pagination Pagination [optional]
total_count int [optional]

Example

from hyperstack.models.billing_history_serverless_inference import BillingHistoryServerlessInference

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

# convert the object into a dict
billing_history_serverless_inference_dict = billing_history_serverless_inference_instance.to_dict()
# create an instance of BillingHistoryServerlessInference from a dict
billing_history_serverless_inference_from_dict = BillingHistoryServerlessInference.from_dict(billing_history_serverless_inference_dict)

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