Skip to content

Commit 16abcfb

Browse files
committed
Release v1.0.4
* New (optional) property **address_id** for **MoveBookingRequest** (it is now possible to move booking to another address) * Changed **address_service_id** and **start** properties of **MoveBookingRequest** so they are required (documentation was missing it, they were already required in the API)
1 parent 17599c5 commit 16abcfb

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

lib/Model/Notification.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,13 @@ public function getModelName()
162162
return self::$swaggerModelName;
163163
}
164164

165-
const NAME_SLOT_CHANGED = 'slot-changed';
166-
const NAME_SLOT_BOOKING = 'slot-booking';
165+
const NAME_SLOT_BOOKING = 'slot-booking';
167166
const NAME_SLOT_BOOKED = 'slot-booked';
168167
const NAME_BOOKING_CANCELED = 'booking-canceled';
169168
const NAME_BOOKING_MOVED = 'booking-moved';
170169
const NAME_BOOKING_MOVING = 'booking-moving';
171-
const NAME_SLOT_OVERBOOKED = 'slot-overbooked';
172170
const NAME_BREAK_CREATED = 'break-created';
171+
const NAME_BREAK_MOVED = 'break-moved';
173172
const NAME_BREAK_REMOVED = 'break-removed';
174173
const NAME_PRESENCE_MARKED = 'presence-marked';
175174

@@ -181,14 +180,13 @@ public function getModelName()
181180
public function getNameAllowableValues()
182181
{
183182
return [
184-
self::NAME_SLOT_CHANGED,
185-
self::NAME_SLOT_BOOKING,
183+
self::NAME_SLOT_BOOKING,
186184
self::NAME_SLOT_BOOKED,
187185
self::NAME_BOOKING_CANCELED,
188186
self::NAME_BOOKING_MOVED,
189187
self::NAME_BOOKING_MOVING,
190-
self::NAME_SLOT_OVERBOOKED,
191188
self::NAME_BREAK_CREATED,
189+
self::NAME_BREAK_MOVED,
192190
self::NAME_BREAK_REMOVED,
193191
self::NAME_PRESENCE_MARKED, ];
194192
}

0 commit comments

Comments
 (0)