Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

TokenBasedBillingHistoryResponse

Properties

Name Type Description Notes
billing_history_serverless_inference BillingHistoryServerlessInference [optional]
message str [optional]
success bool [optional]

Example

from hyperstack.models.token_based_billing_history_response import TokenBasedBillingHistoryResponse

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

# convert the object into a dict
token_based_billing_history_response_dict = token_based_billing_history_response_instance.to_dict()
# create an instance of TokenBasedBillingHistoryResponse from a dict
token_based_billing_history_response_from_dict = TokenBasedBillingHistoryResponse.from_dict(token_based_billing_history_response_dict)

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