ts-mailcow-api
    Preparing search index...

    Type Alias Resource

    Resource object as returned by Mailcow.

    type Resource = {
        active: number | "1" | "0";
        description: string;
        domain: string;
        kind: string;
        local_part: string;
        multiple_bookings: number;
        name: string;
    }
    Index

    Properties

    active: number | "1" | "0"

    Whether the resource is active ("1") or not ("0").

    description: string

    Description of the resource.

    domain: string

    Domain of the resource.

    kind: string

    Type of resource (e.g., "location").

    local_part: string

    Local part of the resource email (before @).

    multiple_bookings: number

    Whether multiple bookings are allowed (0 or 1).

    name: string

    Full email address of the resource.