Search
Data Structure for representing a cookie in Elixir
@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() }