PinEnroller
public protocol PinEnroller : PinPolicyProvider
The object in charge of PIN enrollment.
Note
The SDK does not provide implementations of this interface. The implementation must be done by the user of the SDK.
-
The method that will be invoked till either - The method that will be invoked till either the user provides a PIN that is conform with the format specified by the
PinPolicy
or till the - operation is cancelled (through thePinEnrollmentHandler/cancel()
).Declaration
Swift
func enrollPin(context: PinEnrollmentContext, handler: PinEnrollmentHandler)
Parameters
context
the object containing contextual information for PIN enrollment.
handler
the object that is notified with the new PIN credentials.