Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1015 Bytes

File metadata and controls

28 lines (19 loc) · 1015 Bytes

WTEmployeeNotificationType

Properties

Name Type Description Notes

Example

from wallet.models.wt_employee_notification_type import WTEmployeeNotificationType

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

# convert the object into a dict
wt_employee_notification_type_dict = wt_employee_notification_type_instance.to_dict()
# create an instance of WTEmployeeNotificationType from a dict
wt_employee_notification_type_form_dict = wt_employee_notification_type.from_dict(wt_employee_notification_type_dict)

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