Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1003 Bytes

File metadata and controls

31 lines (22 loc) · 1003 Bytes

PeriodCharges

Properties

Name Type Description Notes
start_date datetime Period start date
end_date datetime Period end date
total_charges float Total charges for the period

Example

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]