NAME

Mojo::Cookie - Cookie Base Class

SYNOPSIS

use base 'Mojo::Cookie';

DESCRIPTION

Mojo::Cookie is a cookie base class.

ATTRIBUTES

Mojo::Cookie implements the following attributes.

name

my $name = $cookie->name;
$cookie  = $cookie->name('foo');

path

my $path = $cookie->path;
$cookie  = $cookie->path('/test');

value

my $value = $cookie->value;
$cookie   = $cookie->value('/test');

version

my $version = $cookie->version;
$cookie     = $cookie->version(1);

METHODS

Mojo::Cookie inherits all methods from Mojo::Base and implements the following new ones.

to_string

my $string = $cookie->to_string;