| Name |
Type |
Description |
Notes |
from wallet.models.employee_schedule_start_day import EmployeeScheduleStartDay
# TODO update the JSON string below
json = "{}"
# create an instance of EmployeeScheduleStartDay from a JSON string
employee_schedule_start_day_instance = EmployeeScheduleStartDay.from_json(json)
# print the JSON string representation of the object
print EmployeeScheduleStartDay.to_json()
# convert the object into a dict
employee_schedule_start_day_dict = employee_schedule_start_day_instance.to_dict()
# create an instance of EmployeeScheduleStartDay from a dict
employee_schedule_start_day_form_dict = employee_schedule_start_day.from_dict(employee_schedule_start_day_dict)
[Back to Model list] [Back to API list] [Back to README]