SearchInContentRequest

@Serializable
data class SearchInContentRequest(val scriptId: ScriptId, val query: String, val caseSensitive: Boolean? = null, val isRegex: Boolean? = null)

Request object containing input parameters for the DebuggerDomain.searchInContent command.

Constructors

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

Types

Link copied to clipboard
class Builder(val scriptId: ScriptId, val query: String)

A builder for SearchInContentRequest, which allows setting the optional parameters of the DebuggerDomain.searchInContent 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

Id of the script to search in.