Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 2.38 KB

Employee.md

File metadata and controls

58 lines (49 loc) · 2.38 KB

Employee

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.employee import Employee

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

# convert the object into a dict
employee_dict = employee_instance.to_dict()
# create an instance of Employee from a dict
employee_form_dict = employee.from_dict(employee_dict)

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