View Source CookieMonster.Cookie (CookieMonster v1.1.2)

Data Structure for representing a cookie in Elixir

Summary

Types

@type t() :: %CookieMonster.Cookie{
  domain: String.t(),
  expires: DateTime.t(),
  http_only: boolean(),
  max_age: 1..9,
  name: String.t(),
  path: String.t(),
  same_site: :strict | :lax | :none,
  secure: boolean(),
  value: String.t()
}