Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1000 Bytes

File metadata and controls

31 lines (22 loc) · 1000 Bytes

MessageResponse

Properties

Name Type Description Notes
status str [optional]
message str [optional]
data Message [optional]

Example

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)

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