You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unique identifier of the newly created Genie session. Use this when sending messages in the conversation.
created_at
int
Session creation timestamp in epoch milliseconds.
[optional]
title
str
Session title. May be empty until the first message has been processed.
[optional]
Example
fromfireblocks.models.genie_create_session_responseimportGenieCreateSessionResponse# TODO update the JSON string belowjson="{}"# create an instance of GenieCreateSessionResponse from a JSON stringgenie_create_session_response_instance=GenieCreateSessionResponse.from_json(json)
# print the JSON string representation of the objectprint(GenieCreateSessionResponse.to_json())
# convert the object into a dictgenie_create_session_response_dict=genie_create_session_response_instance.to_dict()
# create an instance of GenieCreateSessionResponse from a dictgenie_create_session_response_from_dict=GenieCreateSessionResponse.from_dict(genie_create_session_response_dict)