| Name | Type | Description | Notes |
|---|---|---|---|
| credits_charged | int | ||
| records_charged | int | ||
| balance_remaining | int | ||
| truncated_due_to_balance | bool |
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)