All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.tim06.xrayConfiguration.settings.http.Http.kt Maven / Gradle / Ivy

package io.github.tim06.xrayConfiguration.settings.http

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class Http(
    @SerialName("host")
    val host: List,
    @SerialName("path")
    val path: String,
    @SerialName("read_idle_timeout")
    val readIdleTimeout: Int,
    @SerialName("health_check_timeout")
    val healthCheckTimeout: Int,
    @SerialName("method")
    val method: String,
    @SerialName("headers")
    val headers: Map>,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy