UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

49 lines 996 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Cookie = void 0; class Cookie { get name() { return this.mname; } set name(value) { this.mname = value; } get value() { return this.mvalue; } set value(value) { this.mvalue = value; } get path() { return this.mpath; } set path(value) { this.mpath = value; } get expirationDate() { return this.mexpirationDate; } set expirationDate(value) { this.mexpirationDate = value; } get domain() { return this.mdomain; } set domain(value) { this.mdomain = value; } get secure() { return this.msecure; } set secure(value) { this.msecure = value; } get httpOnly() { return this.mhttpOnly; } set httpOnly(value) { this.mhttpOnly = value; } } exports.Cookie = Cookie; //# sourceMappingURL=cookie.js.map