Skip to main content

Booking

Booking ViewController

Once we initialized the SDK and authenticated the user, we can retrieve the MeetingDoctors UI using the following method:

errors
  • Framework not initializated or user not authenticated
MeetingDoctorsError.illegalStateException(reason: .frameworkInitializationFailed))
  • Installation not created
MeetingDoctorsError.illegalStateException(reason: .installationNotCreated))
  • Feature not enabled for that company
MeetingDoctorsError.booking(reason: .notEnabled))
public class func bookingViewController(
completion: @escaping (Swift.Result<UIViewController, Error>
) -> Void)

Implementation example

So we can invoke the booking by adding the following example:

MeetingDoctors.bookingViewController { result in
switch result {
case let .success(value):
// Handle success
case let .failure(error):
// Handle error
}
}