Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.99 KB

File metadata and controls

45 lines (36 loc) · 1.99 KB

WTEmployeeCreate

Properties

Name Type Description Notes
first_name str
last_name str
email str
phone_number str
is_public_representative bool
wallet_sequence_number int
employee_id str
job_title str
department str
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]