Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 2.42 KB

File metadata and controls

58 lines (49 loc) · 2.42 KB

WTEmployee

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]
id str
created_at datetime
updated_at datetime
username str
email_verified str
profile_picture_url str
merchant_id str
session_token str
failed_login_attempts float [optional]
last_login_date datetime [optional]
cfuvid str [optional]
schedule object [optional]
is_email_notification_disabled bool [optional]

Example

from wallet.models.wt_employee import WTEmployee

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

# convert the object into a dict
wt_employee_dict = wt_employee_instance.to_dict()
# create an instance of WTEmployee from a dict
wt_employee_form_dict = wt_employee.from_dict(wt_employee_dict)

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