Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.03 KB

File metadata and controls

28 lines (19 loc) · 1.03 KB

EmployeeScheduleStartMeridiem

Properties

Name Type Description Notes

Example

from wallet.models.employee_schedule_start_meridiem import EmployeeScheduleStartMeridiem

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

# convert the object into a dict
employee_schedule_start_meridiem_dict = employee_schedule_start_meridiem_instance.to_dict()
# create an instance of EmployeeScheduleStartMeridiem from a dict
employee_schedule_start_meridiem_form_dict = employee_schedule_start_meridiem.from_dict(employee_schedule_start_meridiem_dict)

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