TAMS Club Calendar Frontend Documentation
    Preparing search index...

    Interface BrokenReservation

    Object to hold data for the reservation view temporarily. This is used when we are displaying reservations on the reservation calendar.

    interface BrokenReservation {
        data: CalEvent;
        end: number;
        span: number;
        start: number;
    }
    Index

    Properties

    Properties

    data: CalEvent

    Actual reservation data stored here

    end: number

    End time of the reservation block

    span: number

    How many hours/cells does the reservation span

    start: number

    Start time of the reservation block