Skip to content

Commit 018b402

Browse files
committed
Release v1.3.2
* Introducing new optional **is_recurring** field in **bookSlot** endpoint
1 parent 89e797e commit 018b402

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

lib/Api/PatientPresenceApi.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,14 @@ public function markPatientAbsenceWithHttpInfo($facility_id, $doctor_id, $addres
176176
);
177177
$e->setResponseObject($data);
178178
break;
179+
case 409:
180+
$data = ObjectSerializer::deserialize(
181+
$e->getResponseBody(),
182+
'\DocPlanner\Client\Model\Error',
183+
$e->getResponseHeaders()
184+
);
185+
$e->setResponseObject($data);
186+
break;
179187
}
180188
throw $e;
181189
}
@@ -482,6 +490,14 @@ public function markPatientPresenceWithHttpInfo($facility_id, $doctor_id, $addre
482490
);
483491
$e->setResponseObject($data);
484492
break;
493+
case 409:
494+
$data = ObjectSerializer::deserialize(
495+
$e->getResponseBody(),
496+
'\DocPlanner\Client\Model\Error',
497+
$e->getResponseHeaders()
498+
);
499+
$e->setResponseObject($data);
500+
break;
485501
}
486502
throw $e;
487503
}

0 commit comments

Comments
 (0)