@@ -63,7 +63,7 @@ class BookingPatient implements ModelInterface, ArrayAccess
63
63
'birth_date ' => '\DateTime ' ,
64
64
'nin ' => 'string ' ,
65
65
'gender ' => 'string ' ,
66
- 'is_returnting ' => 'bool ' ];
66
+ 'is_returning ' => 'bool ' ];
67
67
68
68
/**
69
69
* Array of property to format mappings. Used for (de)serialization
@@ -78,7 +78,7 @@ class BookingPatient implements ModelInterface, ArrayAccess
78
78
'birth_date ' => 'date ' ,
79
79
'nin ' => null ,
80
80
'gender ' => null ,
81
- 'is_returnting ' => null ];
81
+ 'is_returning ' => null ];
82
82
83
83
/**
84
84
* Array of property to type mappings. Used for (de)serialization
@@ -114,7 +114,7 @@ public static function swaggerFormats()
114
114
'birth_date ' => 'birth_date ' ,
115
115
'nin ' => 'nin ' ,
116
116
'gender ' => 'gender ' ,
117
- 'is_returnting ' => 'is_returnting ' ];
117
+ 'is_returning ' => 'is_returning ' ];
118
118
119
119
/**
120
120
* Array of attributes to setter functions (for deserialization of responses)
@@ -129,7 +129,7 @@ public static function swaggerFormats()
129
129
'birth_date ' => 'setBirthDate ' ,
130
130
'nin ' => 'setNin ' ,
131
131
'gender ' => 'setGender ' ,
132
- 'is_returnting ' => 'setIsReturnting ' ];
132
+ 'is_returning ' => 'setIsReturning ' ];
133
133
134
134
/**
135
135
* Array of attributes to getter functions (for serialization of requests)
@@ -144,7 +144,7 @@ public static function swaggerFormats()
144
144
'birth_date ' => 'getBirthDate ' ,
145
145
'nin ' => 'getNin ' ,
146
146
'gender ' => 'getGender ' ,
147
- 'is_returnting ' => 'getIsReturnting ' ];
147
+ 'is_returning ' => 'getIsReturning ' ];
148
148
149
149
/**
150
150
* Array of attributes where the key is the local name,
@@ -224,7 +224,7 @@ public function __construct(array $data = null)
224
224
$ this ->container ['birth_date ' ] = isset ($ data ['birth_date ' ]) ? $ data ['birth_date ' ] : null ;
225
225
$ this ->container ['nin ' ] = isset ($ data ['nin ' ]) ? $ data ['nin ' ] : null ;
226
226
$ 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 ;
228
228
}
229
229
230
230
/**
@@ -437,25 +437,25 @@ public function setGender($gender)
437
437
}
438
438
439
439
/**
440
- * Gets is_returnting
440
+ * Gets is_returning
441
441
*
442
442
* @return bool
443
443
*/
444
- public function getIsReturnting ()
444
+ public function getIsReturning ()
445
445
{
446
- return $ this ->container ['is_returnting ' ];
446
+ return $ this ->container ['is_returning ' ];
447
447
}
448
448
449
449
/**
450
- * Sets is_returnting
450
+ * Sets is_returning
451
451
*
452
- * @param bool $is_returnting is_returnting
452
+ * @param bool $is_returning is_returning
453
453
*
454
454
* @return $this
455
455
*/
456
- public function setIsReturnting ( $ is_returnting )
456
+ public function setIsReturning ( $ is_returning )
457
457
{
458
- $ this ->container ['is_returnting ' ] = $ is_returnting ;
458
+ $ this ->container ['is_returning ' ] = $ is_returning ;
459
459
460
460
return $ this ;
461
461
}
0 commit comments