View Source CookieMonster.Cookie (CookieMonster v1.1.6)

Data Structure for representing a cookie in Elixir

Summary

Types

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