SearchInResponseBodyRequest

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

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)

Properties

Link copied to clipboard
val caseSensitive: Boolean? = null

If true, search is case sensitive.

Link copied to clipboard
val isRegex: Boolean? = null

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.