AiMessage
Properties
| Name |
Type |
Description |
Notes |
| content |
str |
The content of the message. |
[optional] |
| created_date |
datetime |
The time (UTC; represented using the RFC-3339 standard) at which the message was sent. |
[optional] |
| in_reply_to |
str |
The unique identifier, represented as a UUID, of the message to which this message is replying. This field is populated only for messages of type RESPONSE. |
[optional] |
| type |
str |
The type of the message, indicating whether it is a request or a response. |
[optional] |
| uid |
str |
The unique identifier, represented as a UUID, of the Message. |
|
Example
from scc_firewall_manager_sdk.models.ai_message import AiMessage
# TODO update the JSON string below
json = "{}"
# create an instance of AiMessage from a JSON string
ai_message_instance = AiMessage.from_json(json)
# print the JSON string representation of the object
print(AiMessage.to_json())
# convert the object into a dict
ai_message_dict = ai_message_instance.to_dict()
# create an instance of AiMessage from a dict
ai_message_form_dict = ai_message.from_dict(ai_message_dict)
[Back to Model list] [Back to API list] [Back to README]