Fake Mirrors
    Preparing search index...

    Interface EnabledTargetModel

    Represents the 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)

    accessLevel: "transparent" | "landing"

    The type of 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

    The flag indicating if the donor server uses HTTPS.

    donorSub: string

    The donor subdomain.

    isEnabled: true

    Guaranteed to be true for enabled targets.

    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.

    targetId: string

    The unique identifier for the target.