QueryOptions

constructor(extras: Map<String, String> = emptyMap(), trackingId: String? = null)

Options related to the API request.

Parameters

extras

A collection of key-value pairs that should be included in the request.

trackingId

An ID for tracking this request. The value should be unique for each session. The value must match the regular expression '^a-zA-Z0-9-_\.{1,100}$'.


constructor(extras: Map<String, String> = emptyMap(), customEndpoint: Uri? = null, trackingId: String? = null)

Deprecated

This will be removed from future releases after 2027-03-10.

Replace with


        QueryOptions(
            extras,
            trackingId,
        )
        

Parameters

extras

A collection of key-value pairs that should be included in the request.

customEndpoint

The server to send the request to.

trackingId

An ID for tracking this request. The value should be unique for each session. The value must match the regular expression '^a-zA-Z0-9-_\.{1,100}$'.