| Name | Type | Description | Notes |
|---|---|---|---|
| status | str | [optional] | |
| message | str | [optional] | |
| data | Message | [optional] |
from supportpal_client.models.message_response import MessageResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MessageResponse from a JSON string
message_response_instance = MessageResponse.from_json(json)
# print the JSON string representation of the object
print(MessageResponse.to_json())
# convert the object into a dict
message_response_dict = message_response_instance.to_dict()
# create an instance of MessageResponse from a dict
message_response_from_dict = MessageResponse.from_dict(message_response_dict)