Fake Mirrors
    Preparing search index...

    Interface EnabledTargetModel

    Represents an enabled target model.

    interface EnabledTargetModel {
        accessLevel: "transparent" | "landing";
        campaignId: string;
        createdAt: Date;
        donorDomain: string;
        donorPort: number;
        donorSecure: boolean;
        donorSub: string;
        isEnabled: true;
        messageCount: number;
        mirrorDomain: string;
        mirrorPort: number;
        mirrorSecure: boolean;
        mirrorSub: string;
        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;
    }

    Hierarchy (View Summary)

    Properties

    accessLevel: "transparent" | "landing"

    The access level

    campaignId: string

    The ID of the campaign this target belongs to

    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

    Whether the donor server uses HTTPS

    donorSub: string

    The donor subdomain

    isEnabled: true

    Guaranteed to be true for enabled targets

    messageCount: number

    Total number of messages processed for this target

    mirrorDomain: string

    The mirror domain

    mirrorPort: number

    The mirror server port

    mirrorSecure: boolean

    Whether the mirror uses HTTPS

    mirrorSub: string

    The mirror subdomain

    targetId: string

    The unique identifier of the target

    Accessors