Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 897 Bytes

File metadata and controls

executable file
·
31 lines (22 loc) · 897 Bytes

Total

The current total monthly spend limit for the current user's billing profile.

Properties

Name Type Description Notes
amount float Amount of the currency
currency str Type of currency

Example

from epiccore.models.total import Total

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

# convert the object into a dict
total_dict = total_instance.to_dict()
# create an instance of Total from a dict
total_form_dict = total.from_dict(total_dict)

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