PrimerHeadlessUniversalCheckout.ComponentWithRedirectManager
you must use one of the compatible provide methods
which will provide the component that can be used to build the flow.
The method provideBanksComponent
is backward compatible with older versions of iOS.
public func provideBanksComponent(paymentMethodType: String) throws -> any PrimerHeadlessMainComponent
Hide Parameters
primerHeadlessUniversalCheckoutDidLoadAvailablePaymentMethods
.
For Component with redirect manager, the supported payment method is ADYEN_IDEAL.PrimerHeadlessMainComponent
protocol.
The PrimerHeadlessMainComponent
protocol conforms to the PrimerHeadlessCollectDataComponent protocol.
Hide PrimerHeadlessMainComponent
Hide PrimerHeadlessCollectDataComponent
submit
function in order to process collected data and move component to next state. func didReceiveError(error: PrimerError)
func didUpdate(validationStatus: PrimerValidationStatus, for data: PrimerCollectableData?)
PrimerValidationStatus
is an enum that represents the different validation statuses in the Primer SDK. It helps to communicate the state of validation for a particular process, providing clear categorization of validation states.Hide enum PrimerValidationStatus
Hide Associated Value
PrimerValidationError
representing the specific validation errors found.BanksStep
is a enum class holding different output data for
specific steps. Whenever submit
method is called, stepDelegate
will trigger the next step in case
the call to the mentioned method was successful.
In the case of ADYEN_IDEAL, the steps return will be of type
BanksStep
Show enum BanksStep
Hide Properties
func didReceiveStep(step: PrimerHeadlessStep)
BanksCollectableData
Hide Throws
paymentMethodType
.Supported payment methods for current client session are returned in the onAvailablePaymentMethodsLoaded
delegate.