Module Http.Cookie
type expiration
=[
]
;example: * __cfduid=d90aa986407a12a7a981f1cccf8cb663a1564556010; * expires=Thu, 30-Jul-20 06:53:30 GMT; * path=/; * domain=.strid.dev; * HttpOnly; * Secure
type cookie
= (string, string)
;type t
=
{
cookie: cookie,
expiration: expiration,
domain: option(string),
path: option(string),
secure: bool,
http_only: bool,
}
;