TimeSlotData
Introduction
Detailed view of the TimeSlotData datatype. This page explains all the attributes of that datatype.
Attributes
Name | Type | Posible values | Description |
---|---|---|---|
id | string | n/a | The id of the timeslot. Has to be 32 characters long. |
startDate | long | 1361523600000 | Unix timestamp with the start date of the timeslot. Timestamp is given in miliseconds, not in seconds. |
startDate | long | 1361523600000 | Unix timestamp with the end date of the timeslot. Timestamp is given in miliseconds, not in seconds. |
deadline | long | 1361523600000 | Unix timestamp with the deadline for that timeslot. Timestamp is given in miliseconds, not in seconds. |
freeSeats | integer | n/a | The number of freeeSeats in that timeslot. |
totalSeats | integer | n/a | The number of total seats in that timeslot. |
address | EventAddress | n/a | This field contains all address information for an appointment. Look at the according page for details. |
JSON response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
{ "id": "9ce7feb9653342eb83e3a24e4c8ba396", "startDate": 1378699200000, "endDate": 1378720800000, "deadline": 1378591200000, "freeSeats": 5, "totalSeats": 5, "address": { "street": "Mehringdamm 32", "zip": "10961", "email": null, "city": "Berlin", "country": null, "fax": null, "phone": null, "url": null, "note": null, "displayName": "Softgarden Berlin", "postbox": null, "id": "3cb9cef7e52e47f5a513b4096e913eb0", "building": "5", "room": "Besprechungsraum", "timeZoneId": "Europe/Berlin" } } |