Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.38 KB

File metadata and controls

39 lines (30 loc) · 1.38 KB

FeedbackEventResponse

Response schema for a single FeedbackEvent.

Properties

Name Type Description Notes
id UUID
target_type FeedbackTargetType
target_id UUID
user_id UUID
rating FeedbackRating
reason FeedbackReason
comment str
extra_metadata Dict[str, object]
created_at datetime
updated_at datetime

Example

from ksapi.models.feedback_event_response import FeedbackEventResponse

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

# convert the object into a dict
feedback_event_response_dict = feedback_event_response_instance.to_dict()
# create an instance of FeedbackEventResponse from a dict
feedback_event_response_from_dict = FeedbackEventResponse.from_dict(feedback_event_response_dict)

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