Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.02 KB

File metadata and controls

45 lines (36 loc) · 2.02 KB

WTEmployeeCreate

Properties

Name Type Description Notes
first_name object
last_name object
email object
phone_number object
is_public_representative object
wallet_sequence_number object
employee_id object
job_title object
department object
schedule_start_day EmployeeScheduleStartDay [optional]
schedule_start_hour EmployeeScheduleStartHour [optional]
schedule_start_minute EmployeeScheduleStartMinute [optional]
schedule_start_meridiem EmployeeScheduleStartMeridiem [optional]
schedule_end_day EmployeeScheduleStartDay [optional]
schedule_end_hour EmployeeScheduleStartHour [optional]
schedule_end_minute EmployeeScheduleStartMinute [optional]
schedule_end_meridiem EmployeeScheduleStartMeridiem [optional]

Example

from wallet.models.wt_employee_create import WTEmployeeCreate

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

# convert the object into a dict
wt_employee_create_dict = wt_employee_create_instance.to_dict()
# create an instance of WTEmployeeCreate from a dict
wt_employee_create_form_dict = wt_employee_create.from_dict(wt_employee_create_dict)

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