Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.32 KB

File metadata and controls

39 lines (30 loc) · 1.32 KB

Feedback

Properties

Name Type Description Notes
id int [optional]
ticket_id int [optional]
form_id int [optional]
rating int Customer satisfaction rating: null = not yet responded, 0 = bad, 1 = good, 2 = neutral [optional]
fields_answered int [optional]
token str [optional]
expiry_time int [optional]
values List[object] [optional]
form FeedbackForm [optional]
created_at int [optional]
updated_at int [optional]

Example

from supportpal_client.models.feedback import Feedback

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

# convert the object into a dict
feedback_dict = feedback_instance.to_dict()
# create an instance of Feedback from a dict
feedback_from_dict = Feedback.from_dict(feedback_dict)

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