
Mojo::Cookie::Request - Request Cookies

use Mojo::Cookie::Request;
my $cookie = Mojo::Cookie::Request->new;
$cookie->name('foo');
$cookie->value('bar');
print "$cookie";

Mojo::Cookie::Request is a generic container for HTTP request cookies.

Mojo::Cookie::Request inherits all attributes from Mojo::Cookie.

Mojo::Cookie::Request inherits all methods from Mojo::Cookie and implements the following new ones.
parse my @cookies = $cookie->parse('$Version=1; f=b; $Path=/');
prefixmy $prefix = $cookie->prefix;
to_stringmy $string = $cookie->to_string;
to_string_with_prefixmy $string = $cookie->to_string_with_prefix;