diff --git a/docs/Api/AddressesApi.md b/docs/Api/AddressesApi.md index 72881ff..479e449 100644 --- a/docs/Api/AddressesApi.md +++ b/docs/Api/AddressesApi.md @@ -6,13 +6,14 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**getAddress**](AddressesApi.md#getaddress) | **GET** /facilities/{facility_id}/doctors/{doctor_id}/addresses/{address_id} | [**getAddresses**](AddressesApi.md#getaddresses) | **GET** /facilities/{facility_id}/doctors/{doctor_id}/addresses | +[**updateAddress**](AddressesApi.md#updateaddress) | **PATCH** /facilities/{facility_id}/doctors/{doctor_id}/addresses/{address_id} | # **getAddress** > \DocPlanner\Client\Model\Address getAddress($facility_id, $doctor_id, $address_id, $with) -Get a single address of a doctor Extensions: * `address.online_only` - with this parameter in url, query results will return additional parameter indicating if an address is dedicated to video consultations * `address.visit_payment` - with this parameter in url, query results will return additional parameter indicating if visit payment isr enabled * `address.commercial_type` - with this parameter in url, query results will return additional parameter indicating address commercial type +Get a single address of a doctor Extensions: * `address.online_only` - with this parameter in url, query results will return additional parameter indicating if an address is dedicated to video consultations * `address.visit_payment` - with this parameter in url, query results will return additional parameter indicating if visit payment isr enabled * `address.commercial_type` - with this parameter in url, query results will return additional parameter indicating address commercial type * `address.insurance_support` - with this parameter in url, query results will return additional parameter indicating insurance support type of an address ### Example ```php @@ -71,7 +72,7 @@ Name | Type | Description | Notes -Get a list of addresses of a doctor Extensions: * `address.online_only` - with this parameter in url, query results will return additional parameter indicating if returned addresses are dedicated to video consultations * `address.visit_payment` - with this parameter in url, query results will return additional parameter indicating if visit payments are enabled * `address.commercial_type` - with this parameter in url, query results will return additional parameter indicating address commercial type +Get a list of addresses of a doctor Extensions: * `address.online_only` - with this parameter in url, query results will return additional parameter indicating if returned addresses are dedicated to video consultations * `address.visit_payment` - with this parameter in url, query results will return additional parameter indicating if visit payments are enabled * `address.commercial_type` - with this parameter in url, query results will return additional parameter indicating address commercial type * `address.insurance_support` - with this parameter in url, query results will return additional parameter indicating insurance support type of an address ### Example ```php @@ -123,3 +124,62 @@ 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) +# **updateAddress** +> \DocPlanner\Client\Model\Address updateAddress($body, $facility_id, $doctor_id, $address_id) + + + +Get a single address of a doctor + +### Example +```php +setAccessToken('YOUR_ACCESS_TOKEN'); + +$apiInstance = new DocPlanner\Client\Api\AddressesApi( + // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. + // This is optional, `GuzzleHttp\Client` will be used as default. + new GuzzleHttp\Client(), + $config +); +$body = new \DocPlanner\Client\Model\UpdateAddressRequest(); // \DocPlanner\Client\Model\UpdateAddressRequest | +$facility_id = "facility_id_example"; // string | ID of the Facility +$doctor_id = "doctor_id_example"; // string | ID of a doctor in a facility +$address_id = "address_id_example"; // string | ID of a doctor`s address in a facility + +try { + $result = $apiInstance->updateAddress($body, $facility_id, $doctor_id, $address_id); + print_r($result); +} catch (Exception $e) { + echo 'Exception when calling AddressesApi->updateAddress: ', $e->getMessage(), PHP_EOL; +} +?> +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **body** | [**\DocPlanner\Client\Model\UpdateAddressRequest**](../Model/UpdateAddressRequest.md)| | + **facility_id** | **string**| ID of the Facility | + **doctor_id** | **string**| ID of a doctor in a facility | + **address_id** | **string**| ID of a doctor`s address in a facility | + +### Return type + +[**\DocPlanner\Client\Model\Address**](../Model/Address.md) + +### Authorization + +[oauth2](../../README.md#oauth2) + +### HTTP request headers + + - **Content-Type**: application/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/docs/Model/Address.md b/docs/Model/Address.md index e817846..3e4e585 100644 --- a/docs/Model/Address.md +++ b/docs/Model/Address.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **visit_payment** | **bool** | | [optional] **booking_extra_fields** | [**\DocPlanner\Client\Model\AddressBookingExtraFields**](AddressBookingExtraFields.md) | | [optional] **commercial_type** | **string** | | [optional] +**insurance_support** | **string** | | [optional] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/Model/UpdateAddressRequest.md b/docs/Model/UpdateAddressRequest.md new file mode 100644 index 0000000..f7e1826 --- /dev/null +++ b/docs/Model/UpdateAddressRequest.md @@ -0,0 +1,9 @@ +# UpdateAddressRequest + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**insurance_support** | **string** | | [optional] + +[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) + diff --git a/lib/Api/APINotificationCallbacksApi.php b/lib/Api/APINotificationCallbacksApi.php index 11768d3..0963e99 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.25 + * OpenAPI spec version: 1.0.26 * * 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 0e603ce..20da09c 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 @@ -717,6 +717,344 @@ protected function getAddressesRequest($facility_id, $doctor_id, $with = null) ); } + /** + * Operation updateAddress + * + * @param \DocPlanner\Client\Model\UpdateAddressRequest $body body (required) + * @param string $facility_id ID of the Facility (required) + * @param string $doctor_id ID of a doctor in a facility (required) + * @param string $address_id ID of a doctor`s address in a facility (required) + * + * @throws \DocPlanner\Client\ApiException on non-2xx response + * @throws \InvalidArgumentException + * @return \DocPlanner\Client\Model\Address + */ + public function updateAddress($body, $facility_id, $doctor_id, $address_id) + { + list($response) = $this->updateAddressWithHttpInfo($body, $facility_id, $doctor_id, $address_id); + return $response; + } + + /** + * Operation updateAddressWithHttpInfo + * + * @param \DocPlanner\Client\Model\UpdateAddressRequest $body (required) + * @param string $facility_id ID of the Facility (required) + * @param string $doctor_id ID of a doctor in a facility (required) + * @param string $address_id ID of a doctor`s address in a facility (required) + * + * @throws \DocPlanner\Client\ApiException on non-2xx response + * @throws \InvalidArgumentException + * @return array of \DocPlanner\Client\Model\Address, HTTP status code, HTTP response headers (array of strings) + */ + public function updateAddressWithHttpInfo($body, $facility_id, $doctor_id, $address_id) + { + $returnType = '\DocPlanner\Client\Model\Address'; + $request = $this->updateAddressRequest($body, $facility_id, $doctor_id, $address_id); + + try { + $options = $this->createHttpClientOption(); + try { + $response = $this->client->send($request, $options); + } catch (RequestException $e) { + throw new ApiException( + "[{$e->getCode()}] {$e->getMessage()}", + $e->getCode(), + $e->getResponse() ? $e->getResponse()->getHeaders() : null, + $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null + ); + } + + $statusCode = $response->getStatusCode(); + + if ($statusCode < 200 || $statusCode > 299) { + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $request->getUri() + ), + $statusCode, + $response->getHeaders(), + $response->getBody() + ); + } + + $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 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\DocPlanner\Client\Model\Address', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + case 400: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\DocPlanner\Client\Model\Error', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + case 403: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\DocPlanner\Client\Model\Error', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + case 404: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\DocPlanner\Client\Model\Error', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + } + throw $e; + } + } + + /** + * Operation updateAddressAsync + * + * + * + * @param \DocPlanner\Client\Model\UpdateAddressRequest $body (required) + * @param string $facility_id ID of the Facility (required) + * @param string $doctor_id ID of a doctor in a facility (required) + * @param string $address_id ID of a doctor`s address in a facility (required) + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function updateAddressAsync($body, $facility_id, $doctor_id, $address_id) + { + return $this->updateAddressAsyncWithHttpInfo($body, $facility_id, $doctor_id, $address_id) + ->then( + function ($response) { + return $response[0]; + } + ); + } + + /** + * Operation updateAddressAsyncWithHttpInfo + * + * + * + * @param \DocPlanner\Client\Model\UpdateAddressRequest $body (required) + * @param string $facility_id ID of the Facility (required) + * @param string $doctor_id ID of a doctor in a facility (required) + * @param string $address_id ID of a doctor`s address in a facility (required) + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Promise\PromiseInterface + */ + public function updateAddressAsyncWithHttpInfo($body, $facility_id, $doctor_id, $address_id) + { + $returnType = '\DocPlanner\Client\Model\Address'; + $request = $this->updateAddressRequest($body, $facility_id, $doctor_id, $address_id); + + return $this->client + ->sendAsync($request, $this->createHttpClientOption()) + ->then( + function ($response) use ($returnType) { + $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(); + $statusCode = $response->getStatusCode(); + throw new ApiException( + sprintf( + '[%d] Error connecting to the API (%s)', + $statusCode, + $exception->getRequest()->getUri() + ), + $statusCode, + $response->getHeaders(), + $response->getBody() + ); + } + ); + } + + /** + * Create request for operation 'updateAddress' + * + * @param \DocPlanner\Client\Model\UpdateAddressRequest $body (required) + * @param string $facility_id ID of the Facility (required) + * @param string $doctor_id ID of a doctor in a facility (required) + * @param string $address_id ID of a doctor`s address in a facility (required) + * + * @throws \InvalidArgumentException + * @return \GuzzleHttp\Psr7\Request + */ + protected function updateAddressRequest($body, $facility_id, $doctor_id, $address_id) + { + // verify the required parameter 'body' is set + if ($body === null || (is_array($body) && count($body) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $body when calling updateAddress' + ); + } + // verify the required parameter 'facility_id' is set + if ($facility_id === null || (is_array($facility_id) && count($facility_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $facility_id when calling updateAddress' + ); + } + // verify the required parameter 'doctor_id' is set + if ($doctor_id === null || (is_array($doctor_id) && count($doctor_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $doctor_id when calling updateAddress' + ); + } + // verify the required parameter 'address_id' is set + if ($address_id === null || (is_array($address_id) && count($address_id) === 0)) { + throw new \InvalidArgumentException( + 'Missing the required parameter $address_id when calling updateAddress' + ); + } + + $resourcePath = '/facilities/{facility_id}/doctors/{doctor_id}/addresses/{address_id}'; + $formParams = []; + $queryParams = []; + $headerParams = []; + $httpBody = ''; + $multipart = false; + + + // path params + if ($facility_id !== null) { + $resourcePath = str_replace( + '{' . 'facility_id' . '}', + ObjectSerializer::toPathValue($facility_id), + $resourcePath + ); + } + // path params + if ($doctor_id !== null) { + $resourcePath = str_replace( + '{' . 'doctor_id' . '}', + ObjectSerializer::toPathValue($doctor_id), + $resourcePath + ); + } + // path params + if ($address_id !== null) { + $resourcePath = str_replace( + '{' . 'address_id' . '}', + ObjectSerializer::toPathValue($address_id), + $resourcePath + ); + } + + // body params + $_tempBody = null; + if (isset($body)) { + $_tempBody = $body; + } + + if ($multipart) { + $headers = $this->headerSelector->selectHeadersForMultipart( + ['application/vnd.docplanner+json; charset=UTF-8', 'application/vnd.error+docplanner+json'] + ); + } else { + $headers = $this->headerSelector->selectHeaders( + ['application/vnd.docplanner+json; charset=UTF-8', 'application/vnd.error+docplanner+json'], + ['application/json'] + ); + } + + // for model (json/xml) + if (isset($_tempBody)) { + // $_tempBody is the method argument, if present + $httpBody = $_tempBody; + // \stdClass has no __toString(), so we should encode it manually + if ($httpBody instanceof \stdClass && $headers['Content-Type'] === 'application/json') { + $httpBody = \GuzzleHttp\json_encode($httpBody); + } + } elseif (count($formParams) > 0) { + if ($multipart) { + $multipartContents = []; + foreach ($formParams as $formParamName => $formParamValue) { + $multipartContents[] = [ + 'name' => $formParamName, + 'contents' => $formParamValue + ]; + } + // for HTTP post (form) + $httpBody = new MultipartStream($multipartContents); + + } elseif ($headers['Content-Type'] === 'application/json') { + $httpBody = \GuzzleHttp\json_encode($formParams); + + } else { + // for HTTP post (form) + $httpBody = \GuzzleHttp\Psr7\build_query($formParams); + } + } + + // this endpoint requires OAuth (access token) + if ($this->config->getAccessToken() !== null) { + $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken(); + } + + $defaultHeaders = []; + if ($this->config->getUserAgent()) { + $defaultHeaders['User-Agent'] = $this->config->getUserAgent(); + } + + $headers = array_merge( + $defaultHeaders, + $headerParams, + $headers + ); + + $query = \GuzzleHttp\Psr7\build_query($queryParams); + return new Request( + 'PATCH', + $this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''), + $headers, + $httpBody + ); + } + /** * Create http client option * diff --git a/lib/Api/BookingsApi.php b/lib/Api/BookingsApi.php index 8247f99..9a55a5a 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Api/CalendarBreaksApi.php b/lib/Api/CalendarBreaksApi.php index 150bdbc..1d34314 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.25 + * OpenAPI spec version: 1.0.26 * * 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 73d153f..dc08ae0 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.25 + * OpenAPI spec version: 1.0.26 * * 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 91d5f27..b13bd68 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.25 + * OpenAPI spec version: 1.0.26 * * 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 8ca94b4..3cd7919 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.25 + * OpenAPI spec version: 1.0.26 * * 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 1fc7bae..bea346a 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.25 + * OpenAPI spec version: 1.0.26 * * 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 35dc526..86ccad6 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.25 + * OpenAPI spec version: 1.0.26 * * 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 de08f29..08faa7e 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.25 + * OpenAPI spec version: 1.0.26 * * 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 91b76fa..6c13334 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.25 + * OpenAPI spec version: 1.0.26 * * 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 4f9a2fe..28246e7 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.25 + * OpenAPI spec version: 1.0.26 * * 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 30dae2d..55ee0ce 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.25 + * OpenAPI spec version: 1.0.26 * * 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.25' . PHP_EOL; + $report .= ' OpenAPI Spec Version: 1.0.26' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/lib/HeaderSelector.php b/lib/HeaderSelector.php index 0fb5b64..3aba30f 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.25 + * OpenAPI spec version: 1.0.26 * * 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 a03cd95..f1a6fc4 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.25 + * OpenAPI spec version: 1.0.26 * * 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 31e73f4..d95665e 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.25 + * OpenAPI spec version: 1.0.26 * * 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 75ca11e..46fe6ee 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.25 + * OpenAPI spec version: 1.0.26 * * 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 898b0c5..443f982 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 @@ -63,7 +63,8 @@ class Address implements ModelInterface, ArrayAccess 'is_online_only' => 'bool', 'visit_payment' => 'bool', 'booking_extra_fields' => '\DocPlanner\Client\Model\AddressBookingExtraFields', -'commercial_type' => 'string' ]; +'commercial_type' => 'string', +'insurance_support' => 'string' ]; /** * Array of property to format mappings. Used for (de)serialization @@ -78,7 +79,8 @@ class Address implements ModelInterface, ArrayAccess 'is_online_only' => null, 'visit_payment' => null, 'booking_extra_fields' => null, -'commercial_type' => null ]; +'commercial_type' => null, +'insurance_support' => null ]; /** * Array of property to type mappings. Used for (de)serialization @@ -114,7 +116,8 @@ public static function swaggerFormats() 'is_online_only' => 'is_online_only', 'visit_payment' => 'visit_payment', 'booking_extra_fields' => 'booking_extra_fields', -'commercial_type' => 'commercial_type' ]; +'commercial_type' => 'commercial_type', +'insurance_support' => 'insurance_support' ]; /** * Array of attributes to setter functions (for deserialization of responses) @@ -129,7 +132,8 @@ public static function swaggerFormats() 'is_online_only' => 'setIsOnlineOnly', 'visit_payment' => 'setVisitPayment', 'booking_extra_fields' => 'setBookingExtraFields', -'commercial_type' => 'setCommercialType' ]; +'commercial_type' => 'setCommercialType', +'insurance_support' => 'setInsuranceSupport' ]; /** * Array of attributes to getter functions (for serialization of requests) @@ -144,7 +148,8 @@ public static function swaggerFormats() 'is_online_only' => 'getIsOnlineOnly', 'visit_payment' => 'getVisitPayment', 'booking_extra_fields' => 'getBookingExtraFields', -'commercial_type' => 'getCommercialType' ]; +'commercial_type' => 'getCommercialType', +'insurance_support' => 'getInsuranceSupport' ]; /** * Array of attributes where the key is the local name, @@ -190,6 +195,9 @@ public function getModelName() const COMMERCIAL_TYPE_PREMIUM = 'premium'; const COMMERCIAL_TYPE_SAAS_ONLY = 'saas-only'; const COMMERCIAL_TYPE_BASIC = 'basic'; +const INSURANCE_SUPPORT__PRIVATE = 'private'; +const INSURANCE_SUPPORT_INSURANCE = 'insurance'; +const INSURANCE_SUPPORT_PRIVATE_AND_INSURANCE = 'private_and_insurance'; /** * Gets allowable values of the enum @@ -203,6 +211,18 @@ public function getCommercialTypeAllowableValues() self::COMMERCIAL_TYPE_SAAS_ONLY, self::COMMERCIAL_TYPE_BASIC, ]; } + /** + * Gets allowable values of the enum + * + * @return string[] + */ + public function getInsuranceSupportAllowableValues() + { + return [ + self::INSURANCE_SUPPORT__PRIVATE, +self::INSURANCE_SUPPORT_INSURANCE, +self::INSURANCE_SUPPORT_PRIVATE_AND_INSURANCE, ]; + } /** * Associative array for storing property values @@ -227,6 +247,7 @@ public function __construct(array $data = null) $this->container['visit_payment'] = isset($data['visit_payment']) ? $data['visit_payment'] : null; $this->container['booking_extra_fields'] = isset($data['booking_extra_fields']) ? $data['booking_extra_fields'] : null; $this->container['commercial_type'] = isset($data['commercial_type']) ? $data['commercial_type'] : null; + $this->container['insurance_support'] = isset($data['insurance_support']) ? $data['insurance_support'] : null; } /** @@ -246,6 +267,14 @@ public function listInvalidProperties() ); } + $allowedValues = $this->getInsuranceSupportAllowableValues(); + if (!is_null($this->container['insurance_support']) && !in_array($this->container['insurance_support'], $allowedValues, true)) { + $invalidProperties[] = sprintf( + "invalid value for 'insurance_support', must be one of '%s'", + implode("', '", $allowedValues) + ); + } + return $invalidProperties; } @@ -461,6 +490,39 @@ public function setCommercialType($commercial_type) return $this; } + + /** + * Gets insurance_support + * + * @return string + */ + public function getInsuranceSupport() + { + return $this->container['insurance_support']; + } + + /** + * Sets insurance_support + * + * @param string $insurance_support insurance_support + * + * @return $this + */ + public function setInsuranceSupport($insurance_support) + { + $allowedValues = $this->getInsuranceSupportAllowableValues(); + if (!is_null($insurance_support) && !in_array($insurance_support, $allowedValues, true)) { + throw new \InvalidArgumentException( + sprintf( + "Invalid value for 'insurance_support', must be one of '%s'", + implode("', '", $allowedValues) + ) + ); + } + $this->container['insurance_support'] = $insurance_support; + + return $this; + } /** * Returns true if offset exists. False otherwise. * diff --git a/lib/Model/AddressBookingExtraFields.php b/lib/Model/AddressBookingExtraFields.php index 769e963..76b6d2f 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressInsuranceProvider.php b/lib/Model/AddressInsuranceProvider.php index 1e4c617..fe11126 100644 --- a/lib/Model/AddressInsuranceProvider.php +++ b/lib/Model/AddressInsuranceProvider.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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressInsuranceProviders.php b/lib/Model/AddressInsuranceProviders.php index 2e43177..7fa7a56 100644 --- a/lib/Model/AddressInsuranceProviders.php +++ b/lib/Model/AddressInsuranceProviders.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.25 + * OpenAPI spec version: 1.0.26 * * 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 da6a250..37473a4 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 @@ -45,6 +45,7 @@ class AddressScopes const ONLINE_ONLY = 'address.online_only'; const VISIT_PAYMENT = 'address.visit_payment'; const COMMERCIAL_TYPE = 'address.commercial_type'; +const INSURANCE_SUPPORT = 'address.insurance_support'; /** * Gets allowable values of the enum * @return string[] @@ -54,6 +55,7 @@ public static function getAllowableEnumValues() return [ self::ONLINE_ONLY, self::VISIT_PAYMENT, -self::COMMERCIAL_TYPE, ]; +self::COMMERCIAL_TYPE, +self::INSURANCE_SUPPORT, ]; } } diff --git a/lib/Model/AddressService.php b/lib/Model/AddressService.php index a9d2418..b958fd1 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressServiceChangedNotification.php b/lib/Model/AddressServiceChangedNotification.php index 1c8ee08..51001db 100644 --- a/lib/Model/AddressServiceChangedNotification.php +++ b/lib/Model/AddressServiceChangedNotification.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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressServiceCreatedNotification.php b/lib/Model/AddressServiceCreatedNotification.php index e037ad0..335980e 100644 --- a/lib/Model/AddressServiceCreatedNotification.php +++ b/lib/Model/AddressServiceCreatedNotification.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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressServiceCreatedNotificationData.php b/lib/Model/AddressServiceCreatedNotificationData.php index ad0e7a8..c8c0ace 100644 --- a/lib/Model/AddressServiceCreatedNotificationData.php +++ b/lib/Model/AddressServiceCreatedNotificationData.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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/AddressServiceDeletedNotification.php b/lib/Model/AddressServiceDeletedNotification.php index b47542c..1ef93b3 100644 --- a/lib/Model/AddressServiceDeletedNotification.php +++ b/lib/Model/AddressServiceDeletedNotification.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.25 + * OpenAPI spec version: 1.0.26 * * 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 dbd19bd..6b1429b 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.25 + * OpenAPI spec version: 1.0.26 * * 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 39792e1..c19decc 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.25 + * OpenAPI spec version: 1.0.26 * * 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 d4244cd..c53d886 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.25 + * OpenAPI spec version: 1.0.26 * * 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 dd38695..70774be 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 @@ -45,6 +45,7 @@ class AddressesScopes const ONLINE_ONLY = 'address.online_only'; const VISIT_PAYMENT = 'address.visit_payment'; const COMMERCIAL_TYPE = 'address.commercial_type'; +const INSURANCE_SUPPORT = 'address.insurance_support'; /** * Gets allowable values of the enum * @return string[] @@ -54,6 +55,7 @@ public static function getAllowableEnumValues() return [ self::ONLINE_ONLY, self::VISIT_PAYMENT, -self::COMMERCIAL_TYPE, ]; +self::COMMERCIAL_TYPE, +self::INSURANCE_SUPPORT, ]; } } diff --git a/lib/Model/BookSlotRequest.php b/lib/Model/BookSlotRequest.php index 51cbb6e..bd72b1c 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.25 + * OpenAPI spec version: 1.0.26 * * 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 53092d8..9b21d4a 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.25 + * OpenAPI spec version: 1.0.26 * * 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 0edeb93..65f213e 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/BookingConfirmedNotification.php b/lib/Model/BookingConfirmedNotification.php index 6e732d0..2687fef 100644 --- a/lib/Model/BookingConfirmedNotification.php +++ b/lib/Model/BookingConfirmedNotification.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.25 + * OpenAPI spec version: 1.0.26 * * 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 0a50e3e..e773cc6 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.25 + * OpenAPI spec version: 1.0.26 * * 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 a080da5..49cb9d6 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.25 + * OpenAPI spec version: 1.0.26 * * 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 a1513e7..abe3b4b 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.25 + * OpenAPI spec version: 1.0.26 * * 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 6cf64e6..5b31be9 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.25 + * OpenAPI spec version: 1.0.26 * * 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 dfb02ce..c877d26 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.25 + * OpenAPI spec version: 1.0.26 * * 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 5c60b87..273e9d9 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.25 + * OpenAPI spec version: 1.0.26 * * 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 9842d42..a55fb24 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.25 + * OpenAPI spec version: 1.0.26 * * 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 4e567f3..5673e10 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.25 + * OpenAPI spec version: 1.0.26 * * 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 18578fc..8ff1e6c 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.25 + * OpenAPI spec version: 1.0.26 * * 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 e542bb9..fbb3b42 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.25 + * OpenAPI spec version: 1.0.26 * * 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 fcb9c2d..97f1c31 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.25 + * OpenAPI spec version: 1.0.26 * * 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 c5c3a8e..9c6e124 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.25 + * OpenAPI spec version: 1.0.26 * * 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 1d12f24..0c03fa6 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/Calendar.php b/lib/Model/Calendar.php index 500a091..1c46d8f 100644 --- a/lib/Model/Calendar.php +++ b/lib/Model/Calendar.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.25 + * OpenAPI spec version: 1.0.26 * * 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 42ccbf7..0d25a85 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.25 + * OpenAPI spec version: 1.0.26 * * 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 561c4fa..f05159c 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.25 + * OpenAPI spec version: 1.0.26 * * 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 0b4ee0f..d6d8d8c 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.25 + * OpenAPI spec version: 1.0.26 * * 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 0b7960e..8624796 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.25 + * OpenAPI spec version: 1.0.26 * * 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 4b1cc77..e90c65c 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.25 + * OpenAPI spec version: 1.0.26 * * 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 5cb0fb0..e998353 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.25 + * OpenAPI spec version: 1.0.26 * * 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 6da0d5b..f9758e6 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.25 + * OpenAPI spec version: 1.0.26 * * 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 bbb384b..30f1d0d 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.25 + * OpenAPI spec version: 1.0.26 * * 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 ea025ab..59b2708 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.25 + * OpenAPI spec version: 1.0.26 * * 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 4887462..3364a75 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.25 + * OpenAPI spec version: 1.0.26 * * 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 9fda31d..19640d8 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.25 + * OpenAPI spec version: 1.0.26 * * 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 7955dbe..2dd4aee 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.25 + * OpenAPI spec version: 1.0.26 * * 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 e67c1b1..fb90ea4 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/InsurancePlan.php b/lib/Model/InsurancePlan.php index 71ed33c..68bcc47 100644 --- a/lib/Model/InsurancePlan.php +++ b/lib/Model/InsurancePlan.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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/InsurancePlans.php b/lib/Model/InsurancePlans.php index b6d37ac..1a920c2 100644 --- a/lib/Model/InsurancePlans.php +++ b/lib/Model/InsurancePlans.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.25 + * OpenAPI spec version: 1.0.26 * * 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 0ac5f9e..7b3b7f7 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.25 + * OpenAPI spec version: 1.0.26 * * 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 adababa..5ef617a 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.25 + * OpenAPI spec version: 1.0.26 * * 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 36b8f32..2a1ab1f 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.25 + * OpenAPI spec version: 1.0.26 * * 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 470f413..2d255ca 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.25 + * OpenAPI spec version: 1.0.26 * * 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 2116255..26acd3d 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.25 + * OpenAPI spec version: 1.0.26 * * 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 ecf3552..f523c94 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.25 + * OpenAPI spec version: 1.0.26 * * 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 1eab280..49f635d 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.25 + * OpenAPI spec version: 1.0.26 * * 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 44f6083..e3ce821 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.25 + * OpenAPI spec version: 1.0.26 * * 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 ea38def..447ca1d 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.25 + * OpenAPI spec version: 1.0.26 * * 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 d36bfa4..bf182c2 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.25 + * OpenAPI spec version: 1.0.26 * * 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 f773c0f..75c5658 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.25 + * OpenAPI spec version: 1.0.26 * * 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 5da1030..75b2960 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/PullMultipleNotificationsResponse.php b/lib/Model/PullMultipleNotificationsResponse.php index 2952d86..aae7cbf 100644 --- a/lib/Model/PullMultipleNotificationsResponse.php +++ b/lib/Model/PullMultipleNotificationsResponse.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.25 + * OpenAPI spec version: 1.0.26 * * 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 5064a4b..08d7a1f 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.25 + * OpenAPI spec version: 1.0.26 * * 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 e1ccecc..da6a019 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.25 + * OpenAPI spec version: 1.0.26 * * 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 2a529ff..9e5957a 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.25 + * OpenAPI spec version: 1.0.26 * * 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 1f467d3..0cf4194 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.25 + * OpenAPI spec version: 1.0.26 * * 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 96ee551..fa5e8f5 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.25 + * OpenAPI spec version: 1.0.26 * * 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 28e0d31..55530ca 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.25 + * OpenAPI spec version: 1.0.26 * * 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 f962195..7bfebe7 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.25 + * OpenAPI spec version: 1.0.26 * * 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 977e4bc..8ca2caa 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.25 + * OpenAPI spec version: 1.0.26 * * 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 e4bddf2..4fd81e1 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.25 + * OpenAPI spec version: 1.0.26 * * 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 83b2b90..f3a580a 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.25 + * OpenAPI spec version: 1.0.26 * * 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 fd6181f..847eca6 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.25 + * OpenAPI spec version: 1.0.26 * * 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 22d283a..47d71e6 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.25 + * OpenAPI spec version: 1.0.26 * * 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 b5ac4d5..73912c0 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.25 + * OpenAPI spec version: 1.0.26 * * 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 17f5a52..001a6eb 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.25 + * OpenAPI spec version: 1.0.26 * * 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 4695109..31bf06b 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/UpdateAddressRequest.php b/lib/Model/UpdateAddressRequest.php new file mode 100644 index 0000000..66983b1 --- /dev/null +++ b/lib/Model/UpdateAddressRequest.php @@ -0,0 +1,323 @@ + 'string' ]; + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + */ + protected static $swaggerFormats = [ + 'insurance_support' => null ]; + + /** + * Array of property to type mappings. Used for (de)serialization + * + * @return array + */ + public static function swaggerTypes() + { + return self::$swaggerTypes; + } + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @return array + */ + public static function swaggerFormats() + { + return self::$swaggerFormats; + } + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @var string[] + */ + protected static $attributeMap = [ + 'insurance_support' => 'insurance_support' ]; + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @var string[] + */ + protected static $setters = [ + 'insurance_support' => 'setInsuranceSupport' ]; + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @var string[] + */ + protected static $getters = [ + 'insurance_support' => 'getInsuranceSupport' ]; + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @return array + */ + public static function attributeMap() + { + return self::$attributeMap; + } + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @return array + */ + public static function setters() + { + return self::$setters; + } + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @return array + */ + public static function getters() + { + return self::$getters; + } + + /** + * The original name of the model. + * + * @return string + */ + public function getModelName() + { + return self::$swaggerModelName; + } + + const INSURANCE_SUPPORT__PRIVATE = 'private'; +const INSURANCE_SUPPORT_INSURANCE = 'insurance'; +const INSURANCE_SUPPORT_PRIVATE_AND_INSURANCE = 'private_and_insurance'; + + /** + * Gets allowable values of the enum + * + * @return string[] + */ + public function getInsuranceSupportAllowableValues() + { + return [ + self::INSURANCE_SUPPORT__PRIVATE, +self::INSURANCE_SUPPORT_INSURANCE, +self::INSURANCE_SUPPORT_PRIVATE_AND_INSURANCE, ]; + } + + /** + * Associative array for storing property values + * + * @var mixed[] + */ + protected $container = []; + + /** + * Constructor + * + * @param mixed[] $data Associated array of property values + * initializing the model + */ + public function __construct(array $data = null) + { + $this->container['insurance_support'] = isset($data['insurance_support']) ? $data['insurance_support'] : null; + } + + /** + * Show all the invalid properties with reasons. + * + * @return array invalid properties with reasons + */ + public function listInvalidProperties() + { + $invalidProperties = []; + + $allowedValues = $this->getInsuranceSupportAllowableValues(); + if (!is_null($this->container['insurance_support']) && !in_array($this->container['insurance_support'], $allowedValues, true)) { + $invalidProperties[] = sprintf( + "invalid value for 'insurance_support', must be one of '%s'", + implode("', '", $allowedValues) + ); + } + + return $invalidProperties; + } + + /** + * Validate all the properties in the model + * return true if all passed + * + * @return bool True if all properties are valid + */ + public function valid() + { + return count($this->listInvalidProperties()) === 0; + } + + + /** + * Gets insurance_support + * + * @return string + */ + public function getInsuranceSupport() + { + return $this->container['insurance_support']; + } + + /** + * Sets insurance_support + * + * @param string $insurance_support insurance_support + * + * @return $this + */ + public function setInsuranceSupport($insurance_support) + { + $allowedValues = $this->getInsuranceSupportAllowableValues(); + if (!is_null($insurance_support) && !in_array($insurance_support, $allowedValues, true)) { + throw new \InvalidArgumentException( + sprintf( + "Invalid value for 'insurance_support', must be one of '%s'", + implode("', '", $allowedValues) + ) + ); + } + $this->container['insurance_support'] = $insurance_support; + + return $this; + } + /** + * Returns true if offset exists. False otherwise. + * + * @param integer $offset Offset + * + * @return boolean + */ + public function offsetExists($offset) + { + return isset($this->container[$offset]); + } + + /** + * Gets offset. + * + * @param integer $offset Offset + * + * @return mixed + */ + public function offsetGet($offset) + { + return isset($this->container[$offset]) ? $this->container[$offset] : null; + } + + /** + * Sets value based on offset. + * + * @param integer $offset Offset + * @param mixed $value Value to be set + * + * @return void + */ + public function offsetSet($offset, $value) + { + if (is_null($offset)) { + $this->container[] = $value; + } else { + $this->container[$offset] = $value; + } + } + + /** + * Unsets offset. + * + * @param integer $offset Offset + * + * @return void + */ + public function offsetUnset($offset) + { + unset($this->container[$offset]); + } + + /** + * Gets the string presentation of the object + * + * @return string + */ + public function __toString() + { + if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print + return json_encode( + ObjectSerializer::sanitizeForSerialization($this), + JSON_PRETTY_PRINT + ); + } + + return json_encode(ObjectSerializer::sanitizeForSerialization($this)); + } +} diff --git a/lib/Model/UpdateAddressServiceRequest.php b/lib/Model/UpdateAddressServiceRequest.php index cd7f348..9bf2513 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/UpdateOrCreateAddressInsuranceProviderRequest.php b/lib/Model/UpdateOrCreateAddressInsuranceProviderRequest.php index 0540367..f446318 100644 --- a/lib/Model/UpdateOrCreateAddressInsuranceProviderRequest.php +++ b/lib/Model/UpdateOrCreateAddressInsuranceProviderRequest.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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24 diff --git a/lib/Model/UpdateOrCreateAddressInsuranceProviderRequestInsurancePlans.php b/lib/Model/UpdateOrCreateAddressInsuranceProviderRequestInsurancePlans.php index 0891990..d22b70f 100644 --- a/lib/Model/UpdateOrCreateAddressInsuranceProviderRequestInsurancePlans.php +++ b/lib/Model/UpdateOrCreateAddressInsuranceProviderRequestInsurancePlans.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.25 + * OpenAPI spec version: 1.0.26 * * 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 190f250..984ba76 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.25 + * OpenAPI spec version: 1.0.26 * * 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 555eaef..76ad3fd 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.25 + * OpenAPI spec version: 1.0.26 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 3.0.24