Insomnia-Script-SDK-Docs
    Preparing search index...

    Interface CookieOptions

    interface CookieOptions {
        creation?: Date;
        creationIndex?: number;
        domain?: string;
        expires?: null | string | Date;
        extensions?: { key: string; value: string }[];
        hostOnly?: boolean;
        httpOnly?: boolean;
        id?: string;
        key: string;
        lastAccessed?: Date;
        maxAge?: number | "Infinity" | "-Infinity";
        path?: string;
        pathIsDefault?: boolean;
        secure?: boolean;
        session?: boolean;
        value: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    creation?: Date
    creationIndex?: number
    domain?: string
    expires?: null | string | Date
    extensions?: { key: string; value: string }[]
    hostOnly?: boolean
    httpOnly?: boolean
    id?: string
    key: string
    lastAccessed?: Date
    maxAge?: number | "Infinity" | "-Infinity"
    path?: string
    pathIsDefault?: boolean
    secure?: boolean
    session?: boolean
    value: string