Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 905 Bytes

File metadata and controls

28 lines (20 loc) · 905 Bytes

MessageResponse

Properties

Name Type Description Notes
data MessageInfo [optional]

Example

from bsg_api.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]