Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 2.47 KB

File metadata and controls

58 lines (49 loc) · 2.47 KB

Employee

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]
id str
created_at object
updated_at object
username object
email_verified object
profile_picture_url object
merchant_id str
session_token object
failed_login_attempts object [optional]
last_login_date object [optional]
cfuvid object [optional]
schedule object Construct a type with a set of properties K of type T [optional]
is_email_notification_disabled object [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]