Skip to content

Commit f717317

Browse files
committed
Release v1.0.20
* New (optional) property **default_duration** for **AddAddressServiceRequest** and **UpdateAddressServiceRequest**
1 parent 7167901 commit f717317

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/Model/BookSlotRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**is_returning** | **bool** | | [optional]
88
**patient** | [**\DocPlanner\Client\Model\Patient**](Patient.md) | |
99
**duration** | **int** | |
10-
**send_notifications** | **bool** | Whether we should send visit notificatications | [optional] [default to true]
10+
**send_notifications** | **bool** | Whether we should send visit notificatications | [optional]
1111

1212
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1313

docs/Model/CancelBookingRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**reason** | **string** | Reason why visit was canceled | [optional]
7-
**send_notifications** | **bool** | Whether patient should get notification on canceling the visit | [optional] [default to true]
7+
**send_notifications** | **bool** | Whether patient should get notification on canceling the visit | [optional]
88

99
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1010

lib/Model/BookSlotRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function __construct(array $data = null)
193193
$this->container['is_returning'] = isset($data['is_returning']) ? $data['is_returning'] : null;
194194
$this->container['patient'] = isset($data['patient']) ? $data['patient'] : null;
195195
$this->container['duration'] = isset($data['duration']) ? $data['duration'] : null;
196-
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : true;
196+
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : null;
197197
}
198198

199199
/**

lib/Model/CancelBookingRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public function getModelName()
175175
public function __construct(array $data = null)
176176
{
177177
$this->container['reason'] = isset($data['reason']) ? $data['reason'] : null;
178-
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : true;
178+
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : null;
179179
}
180180

181181
/**

0 commit comments

Comments
 (0)