TracyHttpUrlImpl

data class TracyHttpUrlImpl(val scheme: String, val host: String, val pathSegments: List<String>) : TracyHttpUrl(source)

Direct implementation of TracyHttpUrl.

Use it whenever you need to create an instance of TracyHttpUrl.

Constructors

Link copied to clipboard
constructor(scheme: String, host: String, pathSegments: List<String>)

Properties

Link copied to clipboard
open override val host: String

The host of the URL, indicating the domain or IP address.

Link copied to clipboard
open override val pathSegments: List<String>

The path segments of the URL, representing the hierarchical structure of the resource location.

Link copied to clipboard
open override val scheme: String

The scheme of the URL (e.g., "http", "https") representing the protocol.