Skip to content

Commit df5f97a

Browse files
committed
Release v1.0.39
* Deprecated **videocall_url** field in **getBookings** endpoint
1 parent b105a72 commit df5f97a

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

docs/Model/BookingPatient.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**birth_date** | [**\DateTime**](\DateTime.md) | | [optional]
1111
**nin** | **string** | | [optional]
1212
**gender** | **string** | | [optional]
13-
**is_returnting** | **bool** | | [optional]
13+
**is_returning** | **bool** | | [optional]
1414

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

lib/Model/BookingPatient.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class BookingPatient implements ModelInterface, ArrayAccess
6363
'birth_date' => '\DateTime',
6464
'nin' => 'string',
6565
'gender' => 'string',
66-
'is_returnting' => 'bool' ];
66+
'is_returning' => 'bool' ];
6767

6868
/**
6969
* Array of property to format mappings. Used for (de)serialization
@@ -78,7 +78,7 @@ class BookingPatient implements ModelInterface, ArrayAccess
7878
'birth_date' => 'date',
7979
'nin' => null,
8080
'gender' => null,
81-
'is_returnting' => null ];
81+
'is_returning' => null ];
8282

8383
/**
8484
* Array of property to type mappings. Used for (de)serialization
@@ -114,7 +114,7 @@ public static function swaggerFormats()
114114
'birth_date' => 'birth_date',
115115
'nin' => 'nin',
116116
'gender' => 'gender',
117-
'is_returnting' => 'is_returnting' ];
117+
'is_returning' => 'is_returning' ];
118118

119119
/**
120120
* Array of attributes to setter functions (for deserialization of responses)
@@ -129,7 +129,7 @@ public static function swaggerFormats()
129129
'birth_date' => 'setBirthDate',
130130
'nin' => 'setNin',
131131
'gender' => 'setGender',
132-
'is_returnting' => 'setIsReturnting' ];
132+
'is_returning' => 'setIsReturning' ];
133133

134134
/**
135135
* Array of attributes to getter functions (for serialization of requests)
@@ -144,7 +144,7 @@ public static function swaggerFormats()
144144
'birth_date' => 'getBirthDate',
145145
'nin' => 'getNin',
146146
'gender' => 'getGender',
147-
'is_returnting' => 'getIsReturnting' ];
147+
'is_returning' => 'getIsReturning' ];
148148

149149
/**
150150
* Array of attributes where the key is the local name,
@@ -224,7 +224,7 @@ public function __construct(array $data = null)
224224
$this->container['birth_date'] = isset($data['birth_date']) ? $data['birth_date'] : null;
225225
$this->container['nin'] = isset($data['nin']) ? $data['nin'] : null;
226226
$this->container['gender'] = isset($data['gender']) ? $data['gender'] : null;
227-
$this->container['is_returnting'] = isset($data['is_returnting']) ? $data['is_returnting'] : null;
227+
$this->container['is_returning'] = isset($data['is_returning']) ? $data['is_returning'] : null;
228228
}
229229

230230
/**
@@ -437,25 +437,25 @@ public function setGender($gender)
437437
}
438438

439439
/**
440-
* Gets is_returnting
440+
* Gets is_returning
441441
*
442442
* @return bool
443443
*/
444-
public function getIsReturnting()
444+
public function getIsReturning()
445445
{
446-
return $this->container['is_returnting'];
446+
return $this->container['is_returning'];
447447
}
448448

449449
/**
450-
* Sets is_returnting
450+
* Sets is_returning
451451
*
452-
* @param bool $is_returnting is_returnting
452+
* @param bool $is_returning is_returning
453453
*
454454
* @return $this
455455
*/
456-
public function setIsReturnting($is_returnting)
456+
public function setIsReturning($is_returning)
457457
{
458-
$this->container['is_returnting'] = $is_returnting;
458+
$this->container['is_returning'] = $is_returning;
459459

460460
return $this;
461461
}

0 commit comments

Comments
 (0)