Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.93 KB

File metadata and controls

44 lines (35 loc) · 1.93 KB

MessageLogEntry

Message Log.

Properties

Name Type Description Notes
id str Unique identifier of the message.
service str Name of the service that generated the log entry.
change_type str Type of change that triggered the notification. [optional]
notification_id int ID of the notification. [optional]
notification_name str The name of the notification. [optional]
webhook_id int ID of the webhook. [optional]
webhook_name str The name of the webhook. [optional]
request MessageLogRequest [optional]
response MessageLogResponse [optional]
created_at datetime Timestamp when the log entry was created.
entity_type str The entity type the log is related to.
url str The target URL of the request. [optional]
application_id int Identifier of the Application. [optional]
loyalty_program_id int Identifier of the loyalty program. [optional]
campaign_id int Identifier of the campaign. [optional]

Example

from talon_one.models.message_log_entry import MessageLogEntry

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

# convert the object into a dict
message_log_entry_dict = message_log_entry_instance.to_dict()
# create an instance of MessageLogEntry from a dict
message_log_entry_from_dict = MessageLogEntry.from_dict(message_log_entry_dict)

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