| Name | Type | Description | Notes |
|---|
from wallet.models.message_direction import MessageDirection
# TODO update the JSON string below
json = "{}"
# create an instance of MessageDirection from a JSON string
message_direction_instance = MessageDirection.from_json(json)
# print the JSON string representation of the object
print MessageDirection.to_json()
# convert the object into a dict
message_direction_dict = message_direction_instance.to_dict()
# create an instance of MessageDirection from a dict
message_direction_form_dict = message_direction.from_dict(message_direction_dict)