Green Book
Last updated
Last updated
To view all the type aliases, go to the SybrinIdentity class
Handling the doneLaunching
, success
, failure
or cancel
callbacks are optional but recommended.
The doneLaunching
callback will be executed after the view controller has successfully launched, or if the view controller failed to launch.
The success
callback will be executed after scanning has finished and the view controller has been dismissed.
As explained in Features, the success
callback will always return the country specific model but in its parent class form. However, this can be casted to the country specific model to access that country model's specific properties.
This is not required, but is recommended if you would like to access the country model's specific properties.
The result will be of type SouthAfricaGreenBookModel, but is returned in its parent form GreenBookModel. To access all the data specific to SouthAfricaGreenBookModel you will need to cast the GreenBookModel to that type.
The failure
callback will be executed after scanning has failed and the view controller has been dismissed.
If you would like to report a bug, contact us!
The cancel
callback will be executed after the user has dismissed the view controller and before scanning could finish.
None
Type
Description
UIViewController
The controller you would like to present on.
Type
Description
Bool
true
if the view controller presented successfully; otherwise, false
.
String?
If an error occurs, a message describing the error; otherwise, nil
.
Type
Description
An object containing the results of the scanned green book.
Type
Description
String?
A message describing the error.