@theredspace/spp-client
    Preparing search index...

    Interface BookingType

    Classifies bookings (e.g. billable, non-billable). Supports Add, Read, Modify, Upsert.

    interface BookingType {
        active: "0" | "1";
        approval_status?: "S" | "A" | "R" | "O";
        created: string;
        default_for_approval_status?: "0" | "1";
        id: string;
        name: string;
        notes?: string;
        picklist_label?: string;
        priority?: number;
        updated: string;
    }
    Index

    Properties

    active: "0" | "1"
    approval_status?: "S" | "A" | "R" | "O"
    created: string
    default_for_approval_status?: "0" | "1"
    id: string
    name: string
    notes?: string
    picklist_label?: string
    priority?: number
    updated: string

    Usage and Relationships

    The BookingType classifies bookings based on their type. It is used to categorize and manage different kinds of bookings.

    Important Notes:

    • active: Defaults to 1 when adding.

    Key Fields:

    • name: Required.