Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.22 KB

File metadata and controls

38 lines (29 loc) · 1.22 KB

HelpDeskRequest

Properties

Name Type Description Notes
merchant_phone_number_id str
cell_phone object
id StaticVoucherId
merchant_id str
created_at object
updated_at object
is_active object
employee_id str
is_resolved object
resolved_at object [optional]

Example

from wallet.models.help_desk_request import HelpDeskRequest

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

# convert the object into a dict
help_desk_request_dict = help_desk_request_instance.to_dict()
# create an instance of HelpDeskRequest from a dict
help_desk_request_form_dict = help_desk_request.from_dict(help_desk_request_dict)

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