Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.41 KB

SessionDTO.md

File metadata and controls

37 lines (28 loc) · 1.41 KB

SessionDTO

Properties

Name Type Description Notes
id str Id of the connection
user_id str Id of the user that created the connection
session_metadata SessionMetadata Metadata of the connection (provided by the dapp)
vault_account_id float The vault to connect
fee_level str The default fee level
chain_ids List[str] The chains approved for the connection
connection_type str The connection's type
connection_method str The method through which the connection was established
creation_date datetime Timestamp of the session's creation

Example

from fireblocks.models.session_dto import SessionDTO

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

# convert the object into a dict
session_dto_dict = session_dto_instance.to_dict()
# create an instance of SessionDTO from a dict
session_dto_from_dict = SessionDTO.from_dict(session_dto_dict)

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