Bookings Object



 
The Bookings object contains the SiteCafe bookings.


Members Table

    The following table lists the members provided by the Bookings object.

    Members

    Methods Description
    Delete Deletes a booking.
    GetBookings Returns a range of bookings.

Remarks
    This object is available through the object Server. Use the Bookings object to handle the SiteCafe bookings.

Examples
    The following example deletes the first booking.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteCafe.Server.Bookings.Delete(1));
    </SCRIPT>
    

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

Back to top