EndpointData

data class EndpointData(val baseUrl: String, val authInfo: AuthInfo? = null)

Describes a remote server endpoint combined with designated parameters.

Constructors

Link copied to clipboard
fun EndpointData(baseUrl: String, authInfo: AuthInfo? = null)

Properties

Link copied to clipboard
val authInfo: AuthInfo? = null

Authentication information.

Link copied to clipboard
val baseUrl: String

Base URL (for path fragments) or an actual destination URL (for network requests).