Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 871 Bytes

File metadata and controls

28 lines (19 loc) · 871 Bytes

MessageDirection

Properties

Name Type Description Notes

Example

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)

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