graphdb-workbench
Version:
The web application for GraphDB APIs
15 lines (14 loc) • 482 B
TypeScript
/**
* Represents the user's consent for various types of cookies.
*/
export declare class CookieConsent {
/** Indicates whether the cookie policy has been accepted. */
policyAccepted?: boolean;
/** Indicates consent for statistical cookies. */
statistic?: boolean;
/** Indicates consent for third-party cookies. */
thirdParty?: boolean;
/** Epoch timestamp of last update in seconds. */
updatedAt?: number;
constructor(data?: CookieConsent);
}