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

    Interface Booking

    A booking is the allocation of an employee’s (or resource’s) time to a project or project task. Supports Add, Read, Modify, ModifyOnCondition, Delete, Submit, Approve, Reject, Unapprove.

    interface Booking {
        approval_status?: "S" | "A" | "R" | "O";
        as_percentage: "0" | "1";
        booking_typeid?: string;
        created: string;
        customerid: string;
        date_approved?: string;
        date_submitted?: string;
        enddate: string;
        endtime?: string;
        externalid?: string;
        hours?: number;
        id: string;
        job_codeid?: string;
        locationid?: string;
        notes?: string;
        notify_owner?: "0" | "1";
        ownerid?: string;
        percentage?: number;
        project_assignment_profileid?: string;
        project_taskid?: string;
        projectid: string;
        repeatid?: string;
        resource_request_queue_id?: string;
        source_booking_id?: string;
        startdate: string;
        starttime?: string;
        updated: string;
        userid: string;
    }
    Index

    Properties

    approval_status?: "S" | "A" | "R" | "O"
    as_percentage: "0" | "1"
    booking_typeid?: string
    created: string
    customerid: string
    date_approved?: string
    date_submitted?: string
    enddate: string
    endtime?: string
    externalid?: string
    hours?: number
    id: string
    job_codeid?: string
    locationid?: string
    notes?: string
    notify_owner?: "0" | "1"
    ownerid?: string
    percentage?: number
    project_assignment_profileid?: string
    project_taskid?: string
    projectid: string
    repeatid?: string
    resource_request_queue_id?: string
    source_booking_id?: string
    startdate: string
    starttime?: string
    updated: string
    userid: string