| Name | Type | Description | Notes |
|---|---|---|---|
| bytes_received | int | [optional] | |
| bytes_sent | int | [optional] | |
| events | List[ReportEvent] | [optional] | |
| extra_headers | List[str] | [optional] | |
| flags | int | [optional] | |
| password | str | [optional] | |
| path | str | [optional] | |
| pcap_stream_id | int | [optional] | |
| post_data | str | [optional] | |
| proxy | str | [optional] | |
| proxy_bypass | str | [optional] | |
| referer | str | [optional] | |
| request_body | PcapBodyInfo | [optional] | |
| response_body | PcapBodyInfo | [optional] | |
| response_status | int | [optional] | |
| server_ip | str | [optional] | |
| server_name | str | [optional] | |
| server_port | int | [optional] | |
| service | int | [optional] | |
| user_agent | str | [optional] | |
| username | str | [optional] | |
| verb | str | [optional] | |
| version | str | [optional] |
fromrevengai.models.http_requestimportHttpRequest# TODO update the JSON string belowjson="{}"# create an instance of HttpRequest from a JSON stringhttp_request_instance=HttpRequest.from_json(json)
# print the JSON string representation of the objectprint(HttpRequest.to_json())
# convert the object into a dicthttp_request_dict=http_request_instance.to_dict()
# create an instance of HttpRequest from a dicthttp_request_from_dict=HttpRequest.from_dict(http_request_dict)