Name | Type | Description | Notes |
---|---|---|---|
var_date | date | ||
completion_tokens | int | ||
prompt_tokens | int |
from iblai.models.api_token_cost import APITokenCost
# TODO update the JSON string below
json = "{}"
# create an instance of APITokenCost from a JSON string
api_token_cost_instance = APITokenCost.from_json(json)
# print the JSON string representation of the object
print(APITokenCost.to_json())
# convert the object into a dict
api_token_cost_dict = api_token_cost_instance.to_dict()
# create an instance of APITokenCost from a dict
api_token_cost_from_dict = APITokenCost.from_dict(api_token_cost_dict)