Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 811 Bytes

File metadata and controls

30 lines (21 loc) · 811 Bytes

Message

Properties

Name Type Description Notes
content str
role str

Example

from launchdarkly_api.models.message import Message

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

# convert the object into a dict
message_dict = message_instance.to_dict()
# create an instance of Message from a dict
message_from_dict = Message.from_dict(message_dict)

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