From e4902c5b81c526abef80d39fe83d7bf2d17e7d94 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 7 Sep 2021 00:03:49 +0000 Subject: [PATCH] Release v1.0.12 * Returning whole Booking on moveBooking action. --- docs/Api/BookingsApi.md | 9 +-- lib/Api/APINotificationCallbacksApi.php | 2 +- lib/Api/AddressesApi.php | 2 +- lib/Api/BookingsApi.php | 57 +++++++++++++++---- lib/Api/CalendarBreaksApi.php | 2 +- lib/Api/CalendarsApi.php | 2 +- lib/Api/DoctorsApi.php | 2 +- lib/Api/FacilitiesApi.php | 2 +- lib/Api/InsurancesApi.php | 2 +- lib/Api/PatientPresenceApi.php | 2 +- lib/Api/ServicesApi.php | 2 +- lib/Api/SlotsApi.php | 2 +- lib/ApiException.php | 2 +- lib/Configuration.php | 4 +- lib/HeaderSelector.php | 2 +- .../AddAddressInsuranceProviderRequest.php | 2 +- lib/Model/AddAddressServiceRequest.php | 2 +- lib/Model/AddCalendarBreakRequest.php | 2 +- lib/Model/Address.php | 2 +- lib/Model/AddressBookingExtraFields.php | 2 +- lib/Model/AddressScopes.php | 2 +- lib/Model/AddressService.php | 2 +- lib/Model/AddressServiceNotification.php | 2 +- lib/Model/AddressServices.php | 2 +- lib/Model/Addresses.php | 2 +- lib/Model/AddressesScopes.php | 2 +- lib/Model/BookSlotRequest.php | 2 +- lib/Model/Booking.php | 2 +- lib/Model/BookingCanceledNotification.php | 2 +- lib/Model/BookingMovedNotification.php | 2 +- lib/Model/BookingMovedNotificationData.php | 2 +- lib/Model/BookingMovingNotification.php | 2 +- lib/Model/BookingMovingNotificationData.php | 2 +- lib/Model/BookingNotification.php | 2 +- lib/Model/BookingPatient.php | 2 +- lib/Model/Bookings.php | 2 +- lib/Model/BookingsScopes.php | 2 +- lib/Model/BreakCreatedNotification.php | 2 +- lib/Model/BreakCreatedNotificationData.php | 2 +- lib/Model/BreakMovedNotification.php | 2 +- lib/Model/BreakNotification.php | 2 +- lib/Model/BreakRemovedNotification.php | 2 +- lib/Model/CalendarBreak.php | 2 +- lib/Model/CalendarBreaks.php | 2 +- lib/Model/CancelBookingRequest.php | 2 +- lib/Model/Doctor.php | 2 +- lib/Model/DoctorScopes.php | 2 +- lib/Model/Doctors.php | 2 +- lib/Model/DoctorsScopes.php | 2 +- lib/Model/Error.php | 2 +- lib/Model/Facilities.php | 2 +- lib/Model/Facility.php | 2 +- lib/Model/FacilityScopes.php | 2 +- lib/Model/Insurance.php | 2 +- lib/Model/InsuranceNotification.php | 2 +- lib/Model/InsuranceProvider.php | 2 +- lib/Model/InsuranceProviders.php | 2 +- lib/Model/LicenseNumber.php | 2 +- lib/Model/LicenseNumbers.php | 2 +- lib/Model/ModelInterface.php | 2 +- lib/Model/MoveBookingRequest.php | 2 +- lib/Model/MoveCalendarBreakRequest.php | 2 +- lib/Model/Notification.php | 2 +- lib/Model/OpinionRequest.php | 2 +- lib/Model/Patient.php | 2 +- lib/Model/PresenceMarkedNotification.php | 2 +- lib/Model/PresenceMarkedNotificationData.php | 2 +- lib/Model/ReplaceSlotsRequest.php | 2 +- .../ReplaceSlotsRequestAddressServices.php | 2 +- lib/Model/ReplaceSlotsRequestSlots.php | 2 +- lib/Model/Service.php | 2 +- lib/Model/Services.php | 2 +- lib/Model/ServicesScopes.php | 2 +- lib/Model/Slot.php | 2 +- lib/Model/SlotBookedNotification.php | 2 +- lib/Model/SlotBookedNotificationData.php | 2 +- lib/Model/SlotBookingNotification.php | 2 +- lib/Model/SlotBookingNotificationData.php | 2 +- lib/Model/Slots.php | 2 +- lib/Model/SlotsScopes.php | 2 +- lib/Model/Specialization.php | 2 +- lib/Model/Specializations.php | 2 +- lib/Model/UpdateAddressServiceRequest.php | 2 +- lib/Model/VisitBookingRequestNotification.php | 2 +- lib/ObjectSerializer.php | 2 +- 85 files changed, 136 insertions(+), 98 deletions(-) diff --git a/docs/Api/BookingsApi.md b/docs/Api/BookingsApi.md index 3dc9ac7..c009da3 100644 --- a/docs/Api/BookingsApi.md +++ b/docs/Api/BookingsApi.md @@ -193,7 +193,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) # **moveBooking** -> moveBooking($body, $facility_id, $doctor_id, $address_id, $booking_id) +> \DocPlanner\Client\Model\Booking moveBooking($body, $facility_id, $doctor_id, $address_id, $booking_id) @@ -220,7 +220,8 @@ $address_id = "address_id_example"; // string | ID of a doctor`s address in a fa $booking_id = "booking_id_example"; // string | ID of the Booking try { - $apiInstance->moveBooking($body, $facility_id, $doctor_id, $address_id, $booking_id); + $result = $apiInstance->moveBooking($body, $facility_id, $doctor_id, $address_id, $booking_id); + print_r($result); } catch (Exception $e) { echo 'Exception when calling BookingsApi->moveBooking: ', $e->getMessage(), PHP_EOL; } @@ -239,7 +240,7 @@ Name | Type | Description | Notes ### Return type -void (empty response body) +[**\DocPlanner\Client\Model\Booking**](../Model/Booking.md) ### Authorization @@ -248,7 +249,7 @@ void (empty response body) ### HTTP request headers - **Content-Type**: application/json - - **Accept**: application/vnd.error+docplanner+json + - **Accept**: application/vnd.docplanner+json; charset=UTF-8, application/vnd.error+docplanner+json [[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md) diff --git a/lib/Api/APINotificationCallbacksApi.php b/lib/Api/APINotificationCallbacksApi.php index d022054..1d702bb 100644 --- a/lib/Api/APINotificationCallbacksApi.php +++ b/lib/Api/APINotificationCallbacksApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/AddressesApi.php b/lib/Api/AddressesApi.php index 8f1ce4f..3bcc62e 100644 --- a/lib/Api/AddressesApi.php +++ b/lib/Api/AddressesApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/BookingsApi.php b/lib/Api/BookingsApi.php index c1f9627..844eddf 100644 --- a/lib/Api/BookingsApi.php +++ b/lib/Api/BookingsApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 @@ -1101,11 +1101,12 @@ protected function getBookingsRequest($facility_id, $doctor_id, $address_id, $st * * @throws \DocPlanner\Client\ApiException on non-2xx response * @throws \InvalidArgumentException - * @return void + * @return \DocPlanner\Client\Model\Booking */ public function moveBooking($body, $facility_id, $doctor_id, $address_id, $booking_id) { - $this->moveBookingWithHttpInfo($body, $facility_id, $doctor_id, $address_id, $booking_id); + list($response) = $this->moveBookingWithHttpInfo($body, $facility_id, $doctor_id, $address_id, $booking_id); + return $response; } /** @@ -1119,11 +1120,11 @@ public function moveBooking($body, $facility_id, $doctor_id, $address_id, $booki * * @throws \DocPlanner\Client\ApiException on non-2xx response * @throws \InvalidArgumentException - * @return array of null, HTTP status code, HTTP response headers (array of strings) + * @return array of \DocPlanner\Client\Model\Booking, HTTP status code, HTTP response headers (array of strings) */ public function moveBookingWithHttpInfo($body, $facility_id, $doctor_id, $address_id, $booking_id) { - $returnType = ''; + $returnType = '\DocPlanner\Client\Model\Booking'; $request = $this->moveBookingRequest($body, $facility_id, $doctor_id, $address_id, $booking_id); try { @@ -1154,10 +1155,32 @@ public function moveBookingWithHttpInfo($body, $facility_id, $doctor_id, $addres ); } - return [null, $statusCode, $response->getHeaders()]; + $responseBody = $response->getBody(); + if ($returnType === '\SplFileObject') { + $content = $responseBody; //stream goes to serializer + } else { + $content = $responseBody->getContents(); + if (!in_array($returnType, ['string','integer','bool'])) { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; } catch (ApiException $e) { switch ($e->getCode()) { + case 201: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\DocPlanner\Client\Model\Booking', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; case 400: $data = ObjectSerializer::deserialize( $e->getResponseBody(), @@ -1235,14 +1258,28 @@ function ($response) { */ public function moveBookingAsyncWithHttpInfo($body, $facility_id, $doctor_id, $address_id, $booking_id) { - $returnType = ''; + $returnType = '\DocPlanner\Client\Model\Booking'; $request = $this->moveBookingRequest($body, $facility_id, $doctor_id, $address_id, $booking_id); return $this->client ->sendAsync($request, $this->createHttpClientOption()) ->then( function ($response) use ($returnType) { - return [null, $response->getStatusCode(), $response->getHeaders()]; + $responseBody = $response->getBody(); + if ($returnType === '\SplFileObject') { + $content = $responseBody; //stream goes to serializer + } else { + $content = $responseBody->getContents(); + if ($returnType !== 'string') { + $content = json_decode($content); + } + } + + return [ + ObjectSerializer::deserialize($content, $returnType, []), + $response->getStatusCode(), + $response->getHeaders() + ]; }, function ($exception) { $response = $exception->getResponse(); @@ -1355,11 +1392,11 @@ protected function moveBookingRequest($body, $facility_id, $doctor_id, $address_ if ($multipart) { $headers = $this->headerSelector->selectHeadersForMultipart( - ['application/vnd.error+docplanner+json'] + ['application/vnd.docplanner+json; charset=UTF-8', 'application/vnd.error+docplanner+json'] ); } else { $headers = $this->headerSelector->selectHeaders( - ['application/vnd.error+docplanner+json'], + ['application/vnd.docplanner+json; charset=UTF-8', 'application/vnd.error+docplanner+json'], ['application/json'] ); } diff --git a/lib/Api/CalendarBreaksApi.php b/lib/Api/CalendarBreaksApi.php index 26ffdec..b77fc38 100644 --- a/lib/Api/CalendarBreaksApi.php +++ b/lib/Api/CalendarBreaksApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/CalendarsApi.php b/lib/Api/CalendarsApi.php index 6c14b29..0ec0242 100644 --- a/lib/Api/CalendarsApi.php +++ b/lib/Api/CalendarsApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/DoctorsApi.php b/lib/Api/DoctorsApi.php index 3d285b9..e5759e7 100644 --- a/lib/Api/DoctorsApi.php +++ b/lib/Api/DoctorsApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/FacilitiesApi.php b/lib/Api/FacilitiesApi.php index cbe2bfd..b9a16e2 100644 --- a/lib/Api/FacilitiesApi.php +++ b/lib/Api/FacilitiesApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/InsurancesApi.php b/lib/Api/InsurancesApi.php index 1114ff5..f96daff 100644 --- a/lib/Api/InsurancesApi.php +++ b/lib/Api/InsurancesApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/PatientPresenceApi.php b/lib/Api/PatientPresenceApi.php index c207e74..d8e0461 100644 --- a/lib/Api/PatientPresenceApi.php +++ b/lib/Api/PatientPresenceApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/ServicesApi.php b/lib/Api/ServicesApi.php index 2b93700..5cc605f 100644 --- a/lib/Api/ServicesApi.php +++ b/lib/Api/ServicesApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/SlotsApi.php b/lib/Api/SlotsApi.php index 0cde24b..8636703 100644 --- a/lib/Api/SlotsApi.php +++ b/lib/Api/SlotsApi.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/ApiException.php b/lib/ApiException.php index 96c224f..1d0dadd 100644 --- a/lib/ApiException.php +++ b/lib/ApiException.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Configuration.php b/lib/Configuration.php index 3443820..bd80432 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 @@ -395,7 +395,7 @@ public static function toDebugReport() $report = 'PHP SDK (DocPlanner\Client) Debug Report:' . PHP_EOL; $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; - $report .= ' OpenAPI Spec Version: 1.0.11' . PHP_EOL; + $report .= ' OpenAPI Spec Version: 1.0.12' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/lib/HeaderSelector.php b/lib/HeaderSelector.php index 65629a0..0335e4c 100644 --- a/lib/HeaderSelector.php +++ b/lib/HeaderSelector.php @@ -14,7 +14,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddAddressInsuranceProviderRequest.php b/lib/Model/AddAddressInsuranceProviderRequest.php index 3d63265..a51f487 100644 --- a/lib/Model/AddAddressInsuranceProviderRequest.php +++ b/lib/Model/AddAddressInsuranceProviderRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddAddressServiceRequest.php b/lib/Model/AddAddressServiceRequest.php index d1ef325..b68456f 100644 --- a/lib/Model/AddAddressServiceRequest.php +++ b/lib/Model/AddAddressServiceRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddCalendarBreakRequest.php b/lib/Model/AddCalendarBreakRequest.php index bb076ed..da2ba4a 100644 --- a/lib/Model/AddCalendarBreakRequest.php +++ b/lib/Model/AddCalendarBreakRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Address.php b/lib/Model/Address.php index d96132a..a2c33b3 100644 --- a/lib/Model/Address.php +++ b/lib/Model/Address.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressBookingExtraFields.php b/lib/Model/AddressBookingExtraFields.php index 9a35459..cc1156a 100644 --- a/lib/Model/AddressBookingExtraFields.php +++ b/lib/Model/AddressBookingExtraFields.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressScopes.php b/lib/Model/AddressScopes.php index fec27f3..040491a 100644 --- a/lib/Model/AddressScopes.php +++ b/lib/Model/AddressScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressService.php b/lib/Model/AddressService.php index 7084392..22de366 100644 --- a/lib/Model/AddressService.php +++ b/lib/Model/AddressService.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressServiceNotification.php b/lib/Model/AddressServiceNotification.php index 8b7596b..938f8ec 100644 --- a/lib/Model/AddressServiceNotification.php +++ b/lib/Model/AddressServiceNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressServices.php b/lib/Model/AddressServices.php index 9d4c21b..bd7bea0 100644 --- a/lib/Model/AddressServices.php +++ b/lib/Model/AddressServices.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Addresses.php b/lib/Model/Addresses.php index 6139dfc..d662c66 100644 --- a/lib/Model/Addresses.php +++ b/lib/Model/Addresses.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressesScopes.php b/lib/Model/AddressesScopes.php index 77130b8..e647a8e 100644 --- a/lib/Model/AddressesScopes.php +++ b/lib/Model/AddressesScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookSlotRequest.php b/lib/Model/BookSlotRequest.php index 7a9afaa..52dc207 100644 --- a/lib/Model/BookSlotRequest.php +++ b/lib/Model/BookSlotRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Booking.php b/lib/Model/Booking.php index f3a2b61..45d4ffe 100644 --- a/lib/Model/Booking.php +++ b/lib/Model/Booking.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingCanceledNotification.php b/lib/Model/BookingCanceledNotification.php index 1361ba5..07c8fea 100644 --- a/lib/Model/BookingCanceledNotification.php +++ b/lib/Model/BookingCanceledNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingMovedNotification.php b/lib/Model/BookingMovedNotification.php index 4f32855..73f1afb 100644 --- a/lib/Model/BookingMovedNotification.php +++ b/lib/Model/BookingMovedNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingMovedNotificationData.php b/lib/Model/BookingMovedNotificationData.php index 8c0dcd9..9ebe52b 100644 --- a/lib/Model/BookingMovedNotificationData.php +++ b/lib/Model/BookingMovedNotificationData.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingMovingNotification.php b/lib/Model/BookingMovingNotification.php index 21faa3b..a174f2f 100644 --- a/lib/Model/BookingMovingNotification.php +++ b/lib/Model/BookingMovingNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingMovingNotificationData.php b/lib/Model/BookingMovingNotificationData.php index a446148..075648f 100644 --- a/lib/Model/BookingMovingNotificationData.php +++ b/lib/Model/BookingMovingNotificationData.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingNotification.php b/lib/Model/BookingNotification.php index a4e508b..c5b85ca 100644 --- a/lib/Model/BookingNotification.php +++ b/lib/Model/BookingNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingPatient.php b/lib/Model/BookingPatient.php index 41c7d08..d3ac57c 100644 --- a/lib/Model/BookingPatient.php +++ b/lib/Model/BookingPatient.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Bookings.php b/lib/Model/Bookings.php index 0d2e4d7..465044f 100644 --- a/lib/Model/Bookings.php +++ b/lib/Model/Bookings.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingsScopes.php b/lib/Model/BookingsScopes.php index 0b354e8..98eb500 100644 --- a/lib/Model/BookingsScopes.php +++ b/lib/Model/BookingsScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BreakCreatedNotification.php b/lib/Model/BreakCreatedNotification.php index 3b7432a..f9ff53e 100644 --- a/lib/Model/BreakCreatedNotification.php +++ b/lib/Model/BreakCreatedNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BreakCreatedNotificationData.php b/lib/Model/BreakCreatedNotificationData.php index 80a1a89..f1fefaf 100644 --- a/lib/Model/BreakCreatedNotificationData.php +++ b/lib/Model/BreakCreatedNotificationData.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BreakMovedNotification.php b/lib/Model/BreakMovedNotification.php index bb536f8..108dec4 100644 --- a/lib/Model/BreakMovedNotification.php +++ b/lib/Model/BreakMovedNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BreakNotification.php b/lib/Model/BreakNotification.php index 491273e..eadb9b5 100644 --- a/lib/Model/BreakNotification.php +++ b/lib/Model/BreakNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BreakRemovedNotification.php b/lib/Model/BreakRemovedNotification.php index bed19fa..86c4627 100644 --- a/lib/Model/BreakRemovedNotification.php +++ b/lib/Model/BreakRemovedNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/CalendarBreak.php b/lib/Model/CalendarBreak.php index b197e47..6d83bc4 100644 --- a/lib/Model/CalendarBreak.php +++ b/lib/Model/CalendarBreak.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/CalendarBreaks.php b/lib/Model/CalendarBreaks.php index 95561a5..8f8dac1 100644 --- a/lib/Model/CalendarBreaks.php +++ b/lib/Model/CalendarBreaks.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/CancelBookingRequest.php b/lib/Model/CancelBookingRequest.php index 5f7afcf..0301fb5 100644 --- a/lib/Model/CancelBookingRequest.php +++ b/lib/Model/CancelBookingRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Doctor.php b/lib/Model/Doctor.php index d70d8c5..e9be50a 100644 --- a/lib/Model/Doctor.php +++ b/lib/Model/Doctor.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/DoctorScopes.php b/lib/Model/DoctorScopes.php index 5939092..c85881e 100644 --- a/lib/Model/DoctorScopes.php +++ b/lib/Model/DoctorScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Doctors.php b/lib/Model/Doctors.php index a9299dd..2be4aa2 100644 --- a/lib/Model/Doctors.php +++ b/lib/Model/Doctors.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/DoctorsScopes.php b/lib/Model/DoctorsScopes.php index dbf81de..dde3ad5 100644 --- a/lib/Model/DoctorsScopes.php +++ b/lib/Model/DoctorsScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Error.php b/lib/Model/Error.php index ca31781..a10d25e 100644 --- a/lib/Model/Error.php +++ b/lib/Model/Error.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Facilities.php b/lib/Model/Facilities.php index 2999d8b..ee861a1 100644 --- a/lib/Model/Facilities.php +++ b/lib/Model/Facilities.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Facility.php b/lib/Model/Facility.php index 77379d4..1ef3654 100644 --- a/lib/Model/Facility.php +++ b/lib/Model/Facility.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/FacilityScopes.php b/lib/Model/FacilityScopes.php index 80ca065..7d6ecf0 100644 --- a/lib/Model/FacilityScopes.php +++ b/lib/Model/FacilityScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Insurance.php b/lib/Model/Insurance.php index b407d6e..237aaaf 100644 --- a/lib/Model/Insurance.php +++ b/lib/Model/Insurance.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/InsuranceNotification.php b/lib/Model/InsuranceNotification.php index f835ecf..ae28cdb 100644 --- a/lib/Model/InsuranceNotification.php +++ b/lib/Model/InsuranceNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/InsuranceProvider.php b/lib/Model/InsuranceProvider.php index e16c7ed..ea154f6 100644 --- a/lib/Model/InsuranceProvider.php +++ b/lib/Model/InsuranceProvider.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/InsuranceProviders.php b/lib/Model/InsuranceProviders.php index 60be1c8..09a5ae1 100644 --- a/lib/Model/InsuranceProviders.php +++ b/lib/Model/InsuranceProviders.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/LicenseNumber.php b/lib/Model/LicenseNumber.php index 4d4ebd4..f33a881 100644 --- a/lib/Model/LicenseNumber.php +++ b/lib/Model/LicenseNumber.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/LicenseNumbers.php b/lib/Model/LicenseNumbers.php index 848725e..6048e9a 100644 --- a/lib/Model/LicenseNumbers.php +++ b/lib/Model/LicenseNumbers.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/ModelInterface.php b/lib/Model/ModelInterface.php index 8dbfae0..03fc77e 100644 --- a/lib/Model/ModelInterface.php +++ b/lib/Model/ModelInterface.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/MoveBookingRequest.php b/lib/Model/MoveBookingRequest.php index 7d900c3..efae661 100644 --- a/lib/Model/MoveBookingRequest.php +++ b/lib/Model/MoveBookingRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/MoveCalendarBreakRequest.php b/lib/Model/MoveCalendarBreakRequest.php index cf499d9..d742dd2 100644 --- a/lib/Model/MoveCalendarBreakRequest.php +++ b/lib/Model/MoveCalendarBreakRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Notification.php b/lib/Model/Notification.php index 63f992b..892e1f4 100644 --- a/lib/Model/Notification.php +++ b/lib/Model/Notification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/OpinionRequest.php b/lib/Model/OpinionRequest.php index bf96cde..6174a0a 100644 --- a/lib/Model/OpinionRequest.php +++ b/lib/Model/OpinionRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Patient.php b/lib/Model/Patient.php index 6438a19..11f09ec 100644 --- a/lib/Model/Patient.php +++ b/lib/Model/Patient.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/PresenceMarkedNotification.php b/lib/Model/PresenceMarkedNotification.php index 943982f..5f330fd 100644 --- a/lib/Model/PresenceMarkedNotification.php +++ b/lib/Model/PresenceMarkedNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/PresenceMarkedNotificationData.php b/lib/Model/PresenceMarkedNotificationData.php index d027620..0e2f695 100644 --- a/lib/Model/PresenceMarkedNotificationData.php +++ b/lib/Model/PresenceMarkedNotificationData.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/ReplaceSlotsRequest.php b/lib/Model/ReplaceSlotsRequest.php index c0c51fd..a61eef2 100644 --- a/lib/Model/ReplaceSlotsRequest.php +++ b/lib/Model/ReplaceSlotsRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/ReplaceSlotsRequestAddressServices.php b/lib/Model/ReplaceSlotsRequestAddressServices.php index b9a26a1..b645805 100644 --- a/lib/Model/ReplaceSlotsRequestAddressServices.php +++ b/lib/Model/ReplaceSlotsRequestAddressServices.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/ReplaceSlotsRequestSlots.php b/lib/Model/ReplaceSlotsRequestSlots.php index abf3566..d5c7738 100644 --- a/lib/Model/ReplaceSlotsRequestSlots.php +++ b/lib/Model/ReplaceSlotsRequestSlots.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Service.php b/lib/Model/Service.php index 2dfa09d..f30655e 100644 --- a/lib/Model/Service.php +++ b/lib/Model/Service.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Services.php b/lib/Model/Services.php index 76b1d38..3b89a9c 100644 --- a/lib/Model/Services.php +++ b/lib/Model/Services.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/ServicesScopes.php b/lib/Model/ServicesScopes.php index 9a2a541..7379445 100644 --- a/lib/Model/ServicesScopes.php +++ b/lib/Model/ServicesScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Slot.php b/lib/Model/Slot.php index b9695e3..de4fa5a 100644 --- a/lib/Model/Slot.php +++ b/lib/Model/Slot.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/SlotBookedNotification.php b/lib/Model/SlotBookedNotification.php index fb8c80e..efad502 100644 --- a/lib/Model/SlotBookedNotification.php +++ b/lib/Model/SlotBookedNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/SlotBookedNotificationData.php b/lib/Model/SlotBookedNotificationData.php index 0853470..2295e21 100644 --- a/lib/Model/SlotBookedNotificationData.php +++ b/lib/Model/SlotBookedNotificationData.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/SlotBookingNotification.php b/lib/Model/SlotBookingNotification.php index e287be4..32ff43f 100644 --- a/lib/Model/SlotBookingNotification.php +++ b/lib/Model/SlotBookingNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/SlotBookingNotificationData.php b/lib/Model/SlotBookingNotificationData.php index 9956cb2..0ca5d37 100644 --- a/lib/Model/SlotBookingNotificationData.php +++ b/lib/Model/SlotBookingNotificationData.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Slots.php b/lib/Model/Slots.php index 6d28d45..5025d70 100644 --- a/lib/Model/Slots.php +++ b/lib/Model/Slots.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/SlotsScopes.php b/lib/Model/SlotsScopes.php index 25d755c..8818525 100644 --- a/lib/Model/SlotsScopes.php +++ b/lib/Model/SlotsScopes.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Specialization.php b/lib/Model/Specialization.php index 2d9905c..0b3cd84 100644 --- a/lib/Model/Specialization.php +++ b/lib/Model/Specialization.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Specializations.php b/lib/Model/Specializations.php index f6b844e..f5ff94c 100644 --- a/lib/Model/Specializations.php +++ b/lib/Model/Specializations.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/UpdateAddressServiceRequest.php b/lib/Model/UpdateAddressServiceRequest.php index f5244a3..07e6b60 100644 --- a/lib/Model/UpdateAddressServiceRequest.php +++ b/lib/Model/UpdateAddressServiceRequest.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/VisitBookingRequestNotification.php b/lib/Model/VisitBookingRequestNotification.php index 783e8dc..f323356 100644 --- a/lib/Model/VisitBookingRequestNotification.php +++ b/lib/Model/VisitBookingRequestNotification.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/ObjectSerializer.php b/lib/ObjectSerializer.php index 6dc62ea..7cffae4 100644 --- a/lib/ObjectSerializer.php +++ b/lib/ObjectSerializer.php @@ -15,7 +15,7 @@ * * Welcome to Docplanner Integrations [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API! This API gives You the ability to build Your own application and integrate it with Docplanner services. * - * OpenAPI spec version: 1.0.11 + * OpenAPI spec version: 1.0.12 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24