@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: DateContainer;
        default_for_approval_status?: "0" | "1";
        id: string;
        name: string;
        notes?: string;
        picklist_label?: string;
        priority?: number;
        updated: DateContainer;
    }
    Index

    Properties

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