GetHistogramsRequest

@Serializable
data class GetHistogramsRequest(val query: String? = null, val delta: Boolean? = null)

Request object containing input parameters for the BrowserDomain.getHistograms command.

Constructors

Link copied to clipboard
constructor(query: String? = null, delta: Boolean? = null)

Types

Link copied to clipboard
class Builder

A builder for GetHistogramsRequest, which allows setting the optional parameters of the BrowserDomain.getHistograms command via a lambda.

Properties

Link copied to clipboard
val delta: Boolean? = null

If true, retrieve delta since last delta call.

Link copied to clipboard
val query: String? = null

Requested substring in name. Only histograms which have query as a substring in their name are extracted. An empty or absent query returns all histograms.