Skip to main content

My Health

My Health ViewController

My Health contains both medical history and feed section.

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

CAUTION

Errors returned

  • Framework not initializated or user not authenticated
MeetingDoctorsError.illegalStateException(reason: .frameworkInitializationFailed))
  • Installation not created
MeetingDoctorsError.illegalStateException(reason: .installationNotCreated))
public class func myHealthViewController(
completion: @escaping (Swift.Result<UIViewController, Error>
) -> Void)

Implementation example

So we can invoke the my health by adding the following method:

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

Medical History

info

Medical Prescription (aka Receta electrónica) it's inside the Medical History flow. To check the medical prescription you must show the Medical History flow inside your app.

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

CAUTION

Errors returned

  • 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.medicalHistory(reason: .notEnabled))
public class func medicalHistoryViewController(
completion: @escaping (Swift.Result<UIViewController, Error>
) -> Void)

Implementation example

So we can invoke the medical history by adding the following method:

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

Feed

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

CAUTION

Errors returned

  • Framework not initializated or user not authenticated
MeetingDoctorsError.illegalStateException(reason: .frameworkInitializationFailed))
  • Installation not created
MeetingDoctorsError.illegalStateException(reason: .installationNotCreated))
public class func feedsViewController(
completion: @escaping (Swift.Result<UIViewController, Error>
) -> Void)

Implementation example

So we can invoke the feed by adding the following method:

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