| Name |
Type |
Description |
Notes |
| start_date |
datetime |
Period start date |
|
| end_date |
datetime |
Period end date |
|
| total_charges |
float |
Total charges for the period |
|
from rankvectors.models.period_charges import PeriodCharges
# TODO update the JSON string below
json = "{}"
# create an instance of PeriodCharges from a JSON string
period_charges_instance = PeriodCharges.from_json(json)
# print the JSON string representation of the object
print(PeriodCharges.to_json())
# convert the object into a dict
period_charges_dict = period_charges_instance.to_dict()
# create an instance of PeriodCharges from a dict
period_charges_from_dict = PeriodCharges.from_dict(period_charges_dict)
[Back to Model list] [Back to API list] [Back to README]