Fake Mirrors
    Preparing search index...

    Interface EnabledFullTargetModel

    Represents the enabled full target model.

    interface EnabledFullTargetModel {
        accessLevel: "transparent" | "landing";
        allowWebSockets: boolean;
        bodySizeLimit: number;
        campaignId: string;
        connectTimeout: number;
        createdAt: Date;
        donorDomain: string;
        donorPort: number;
        donorSecure: boolean;
        donorSub: string;
        faviconIco: string;
        headersSizeLimit: number;
        isEnabled: true;
        labels: string[];
        mainPage: string;
        messageCount: number;
        mirrorDomain: string;
        mirrorPort: number;
        mirrorSecure: boolean;
        mirrorSub: string;
        notFoundPage: string;
        robotsTxt: string;
        simpleTimeout: number;
        sitemapXml: string;
        streamTimeout: number;
        targetId: string;
        get donorHost(): string;
        get donorHostname(): string;
        get donorProtocol(): string;
        get donorUrl(): string;
        get mirrorHost(): string;
        get mirrorHostname(): string;
        get mirrorProtocol(): string;
        get mirrorUrl(): string;
        hasLabel(value: string): boolean;
    }

    Hierarchy (View Summary)

    accessLevel: "transparent" | "landing"

    The type of access level.

    allowWebSockets: boolean

    The flag indicating if WebSocket connections allowed.

    bodySizeLimit: number

    The maximum body size in bytes.

    campaignId: string

    The ID of the campaign this target belongs to.

    connectTimeout: number

    The connection timeout in milliseconds.

    createdAt: Date

    The date and time when the target was created.

    donorDomain: string

    The donor domain name.

    donorPort: number

    The donor server port.

    donorSecure: boolean

    The flag indicating if the donor server uses HTTPS.

    donorSub: string

    The donor subdomain.

    faviconIco: string

    The custom favicon.ico content.

    headersSizeLimit: number

    The maximum headers size in bytes.

    isEnabled: true

    Guaranteed to be true for enabled targets.

    labels: string[]

    The list of labels for categorization.

    mainPage: string

    The custom main page content.

    messageCount: number

    The total number of messages processed for this target.

    mirrorDomain: string

    The mirror domain.

    mirrorPort: number

    The mirror server port.

    mirrorSecure: boolean

    The flag indicating if the mirror server uses HTTPS.

    mirrorSub: string

    The mirror subdomain.

    notFoundPage: string

    The custom not-found page content.

    robotsTxt: string

    The custom robots.txt content.

    simpleTimeout: number

    The simple request timeout in milliseconds.

    sitemapXml: string

    The custom sitemap.xml content.

    streamTimeout: number

    The streaming request timeout in milliseconds.

    targetId: string

    The unique identifier for the target.