Skip to content

Commit

Permalink
Release v1.0.20
Browse files Browse the repository at this point in the history
 * New (optional) property **default_duration** for **AddAddressServiceRequest** and **UpdateAddressServiceRequest**
  • Loading branch information
actions-user committed Nov 16, 2022
1 parent 7167901 commit f717317
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/Model/BookSlotRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**is_returning** | **bool** | | [optional]
**patient** | [**\DocPlanner\Client\Model\Patient**](Patient.md) | |
**duration** | **int** | |
**send_notifications** | **bool** | Whether we should send visit notificatications | [optional] [default to true]
**send_notifications** | **bool** | Whether we should send visit notificatications | [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)

2 changes: 1 addition & 1 deletion docs/Model/CancelBookingRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**reason** | **string** | Reason why visit was canceled | [optional]
**send_notifications** | **bool** | Whether patient should get notification on canceling the visit | [optional] [default to true]
**send_notifications** | **bool** | Whether patient should get notification on canceling the visit | [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)

2 changes: 1 addition & 1 deletion lib/Model/BookSlotRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public function __construct(array $data = null)
$this->container['is_returning'] = isset($data['is_returning']) ? $data['is_returning'] : null;
$this->container['patient'] = isset($data['patient']) ? $data['patient'] : null;
$this->container['duration'] = isset($data['duration']) ? $data['duration'] : null;
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : true;
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : null;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/CancelBookingRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public function getModelName()
public function __construct(array $data = null)
{
$this->container['reason'] = isset($data['reason']) ? $data['reason'] : null;
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : true;
$this->container['send_notifications'] = isset($data['send_notifications']) ? $data['send_notifications'] : null;
}

/**
Expand Down

0 comments on commit f717317

Please sign in to comment.