2#ifndef _KURLYK_TYPES_COOKIE_HPP_INCLUDED
3#define _KURLYK_TYPES_COOKIE_HPP_INCLUDED
std::string name
The name of the cookie.
std::string value
The value of the cookie.
Cookie()=default
Default constructor for the Cookie class.
uint64_t expiration_date
The expiration date of the cookie in Unix time format.
Cookie(const std::string &name, const std::string &value, const std::string &path=std::string(), uint64_t expiration_date=0)
Parameterized constructor for the Cookie class.
std::string path
The path to which the cookie is associated.
Primary namespace for the Kurlyk library, encompassing initialization, request management,...