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

    Interface BookingRequest

    A request for allocation of time to a project/task. Read-only.

    interface BookingRequest {
        approval_status?: "P" | "A" | "R" | "O";
        as_percentage: "0" | "1";
        attachment_id?: string;
        booking_type_id?: string;
        created: DateContainer;
        customer_id: string;
        date_approved?: DateContainer;
        date_submitted?: DateContainer;
        description?: string;
        enddate?: DateContainer;
        external_id?: string;
        hours?: number;
        id: string;
        job_code_id?: string;
        name: string;
        notes?: string;
        notify_owner?: "0" | "1";
        number: string;
        owner_id: string;
        percentage?: number;
        prefix?: string;
        project_id: string;
        project_task_id?: string;
        startdate?: DateContainer;
        updated?: DateContainer;
    }
    Index

    Properties

    approval_status?: "P" | "A" | "R" | "O"
    as_percentage: "0" | "1"
    attachment_id?: string
    booking_type_id?: string
    created: DateContainer
    customer_id: string
    date_approved?: DateContainer
    date_submitted?: DateContainer
    description?: string
    enddate?: DateContainer
    external_id?: string
    hours?: number
    id: string
    job_code_id?: string
    name: string
    notes?: string
    notify_owner?: "0" | "1"
    number: string
    owner_id: string
    percentage?: number
    prefix?: string
    project_id: string
    project_task_id?: string
    startdate?: DateContainer
    updated?: DateContainer