SearchInResponseBodyRequest

@Serializable
data class SearchInResponseBodyRequest(val requestId: RequestId, val query: String, val caseSensitive: Boolean? = null, val isRegex: Boolean? = null)

Request object containing input parameters for the NetworkDomain.searchInResponseBody command.

Constructors

Link copied to clipboard
constructor(requestId: RequestId, query: String, caseSensitive: Boolean? = null, isRegex: Boolean? = null)

Types

Link copied to clipboard
class Builder(val requestId: RequestId, val query: String)

A builder for SearchInResponseBodyRequest, which allows setting the optional parameters of the NetworkDomain.searchInResponseBody command via a lambda.

Properties

Link copied to clipboard

If true, search is case sensitive.

Link copied to clipboard

If true, treats string parameter as regex.

Link copied to clipboard

String to search for.

Link copied to clipboard

Identifier of the network response to search.