ts-mailcow-api
    Preparing search index...

    Interface DomainAdmin

    Represents a Domain Admin entry returned by the Mailcow API.

    interface DomainAdmin {
        active: string;
        created: string;
        selected_domains: string[];
        tfa_active: string;
        unselected_domains: string[];
        username: string;
    }
    Index

    Properties

    active: string

    String indicating if the domain admin is active ("1" for yes, "0" for no).

    created: string

    Creation timestamp of the domain admin entry.

    selected_domains: string[]

    List of domains selected for this domain admin.

    tfa_active: string

    Indicates if two-factor authentication is active ("1" for yes, "0" for no).

    unselected_domains: string[]

    List of domains not selected for this domain admin.

    username: string

    Username of the domain admin.