Skip to content

Latest commit

History

History
39 lines (30 loc) · 1.23 KB

File metadata and controls

39 lines (30 loc) · 1.23 KB

Connection

Properties

NameTypeDescriptionNotes
bytes_receivedint[optional]
bytes_sentint[optional]
eventsList[ReportEvent][optional]
ja3str[optional]
ja3sstr[optional]
local_ipstr
local_portobject
protocolstr
remote_ipstr
remote_portobject
tcp_carved_filesList[TcpCarvedFile][optional]

Example

fromrevengai.models.connectionimportConnection# TODO update the JSON string belowjson="{}"# create an instance of Connection from a JSON stringconnection_instance=Connection.from_json(json)
# print the JSON string representation of the objectprint(Connection.to_json())
# convert the object into a dictconnection_dict=connection_instance.to_dict()
# create an instance of Connection from a dictconnection_from_dict=Connection.from_dict(connection_dict)

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