| Name | Type | Description | Notes |
|---|---|---|---|
| billing_history | List[BillingHistory] | [optional] | |
| org_id | int | [optional] | |
| pagination | Pagination | [optional] | |
| total_count | int | [optional] |
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)