Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 905 Bytes

File metadata and controls

32 lines (23 loc) · 905 Bytes

Billing

Properties

Name Type Description Notes
credits_charged int
records_charged int
balance_remaining int
truncated_due_to_balance bool

Example

from unifapi.models.billing import Billing

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

# convert the object into a dict
billing_dict = billing_instance.to_dict()
# create an instance of Billing from a dict
billing_from_dict = Billing.from_dict(billing_dict)

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