NAME
Mojo::Cookie - HTTP 1.1 cookie base class
SYNOPSIS
use Mojo::Base 'Mojo::Cookie';DESCRIPTION
Mojo::Cookie is an abstract base class for HTTP 1.1 cookies.
ATTRIBUTES
Mojo::Cookie implements the following attributes.
name
my $name = $cookie->name;
$cookie  = $cookie->name('foo');Cookie name.
path
my $path = $cookie->path;
$cookie  = $cookie->path('/test');Cookie path.
value
my $value = $cookie->value;
$cookie   = $cookie->value('/test');Cookie value.
version
my $version = $cookie->version;
$cookie     = $cookie->version(1);Cookie version.
METHODS
Mojo::Cookie inherits all methods from Mojo::Base and implements the following new ones.
to_string
my $string = $cookie->to_string;Render cookie.