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