Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

MessageLogEntries

Properties

Name Type Description Notes
next_cursor bytes The next value in the database. Note: If this value is not present, it means that there are no more values in the database for this combination of request parameters. [optional]
data List[MessageLogEntry] List of message logs.

Example

from talon_one.models.message_log_entries import MessageLogEntries

# TODO update the JSON string below
json = "{}"
# create an instance of MessageLogEntries from a JSON string
message_log_entries_instance = MessageLogEntries.from_json(json)
# print the JSON string representation of the object
print(MessageLogEntries.to_json())

# convert the object into a dict
message_log_entries_dict = message_log_entries_instance.to_dict()
# create an instance of MessageLogEntries from a dict
message_log_entries_from_dict = MessageLogEntries.from_dict(message_log_entries_dict)

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