Smartlook Network Request
    data class SmartlookNetworkRequest(    var start: Long,     var duration: Long,     var url: URL,     var method: String,     var protocol: String?,     var initiator: String?,     var status: SmartlookNetworkRequest.Status,     var statusCode: Int,     var cached: Boolean,     var requestBody: String?,     var responseBody: String?,     var requestHeaders: MutableMap<String, MutableList<String>>?,     var responseHeaders: MutableMap<String, MutableList<String>>?)
Content copied to clipboard
Network request event container. Used to track network requests that can be viewed in devtools.
Constructors
Link copied to clipboard
                fun SmartlookNetworkRequest(    duration: Long,     url: URL,     method: String,     protocol: String?,     initiator: String,     status: SmartlookNetworkRequest.Status,     statusCode: Int,     cached: Boolean,     requestBody: String?,     responseBody: String?,     requestHeaders: MutableMap<String, MutableList<String>>? = null,     responseHeaders: MutableMap<String, MutableList<String>>? = null)
Content copied to clipboard
Link copied to clipboard
                fun SmartlookNetworkRequest(    start: Long,     duration: Long,     url: URL,     method: String,     protocol: String?,     initiator: String?,     status: SmartlookNetworkRequest.Status,     statusCode: Int,     cached: Boolean,     requestBody: String?,     responseBody: String?,     requestHeaders: MutableMap<String, MutableList<String>>?,     responseHeaders: MutableMap<String, MutableList<String>>?)
Content copied to clipboard