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

ai.platon.pulsar.common.Cookie.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package ai.platon.pulsar.common

data class Cookie(
    var name: String? = null,
    var value: String? = null,
    var domain: String? = null,
    var path: String? = null,
    var expires: Double? = null,
    var size: Int? = null,
    var httpOnly: Boolean? = null,
    var secure: Boolean? = null,
    var session: Boolean? = null,
    var sameParty: Boolean? = null,
    var sourcePort: Int? = null,
    var sameSite: String? = null,
    var priority: String? = null,
    var sourceScheme: String? = null,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy