BookingsCol Collection



 
The BookingsCol collection contains SiteCafe bookings.


Members Table

    The following table lists the members provided by the BookingsCol collection.

    Members
    Properties Description
    Count Contains the number of bookings.
    Methods Description
    Item Returns one item of the collection.

Remarks
    This object is returned by the GetBookings method. Use the BookingsCol collection to receive information about a booking.

Examples
    The following example displays the reason for the first account's first booking.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    bookings = SiteCafe.Server.Bookings.GetBookings(1, 0, 0, 1, 10);
    alert(bookings.Item(1).Reason);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top