RTVIClientParams

data class RTVIClientParams(    val baseUrl: String?,     val headers: List<Pair<String, String>> = emptyList(),     val endpoints: RTVIURLEndpoints = RTVIURLEndpoints(),     val requestData: List<Pair<String, Value>> = emptyList(),     val config: List<ServiceConfig> = emptyList())

Connection options when instantiating a RTVIClient.

Constructors

Link copied to clipboard
constructor(    baseUrl: String?,     headers: List<Pair<String, String>> = emptyList(),     endpoints: RTVIURLEndpoints = RTVIURLEndpoints(),     requestData: List<Pair<String, Value>> = emptyList(),     config: List<ServiceConfig> = emptyList())

Properties

Link copied to clipboard

The base URL for the RTVI POST request.

Link copied to clipboard

Further configuration options for the backend.

Link copied to clipboard

API endpoint names for the RTVI POST requests.

Link copied to clipboard

Custom HTTP headers to be sent with the POST request.

Link copied to clipboard

Custom parameters to add to the auth request body.