NolPayPaymentComponent
that can be used to link new
nol Pay cards.
KOTLIN
Copy
Ask AI
fun provideNolPayPaymentComponent(viewModelStoreOwner: ViewModelStoreOwner): NolPayPaymentComponent
Parameters
Hide Parameters
Hide Parameters
The ViewModelStoreOwner
to associate with the component.
Returns
An instance ofNolPayPaymentComponent
.
Hide NolPayPaymentComponent
Hide NolPayPaymentComponent
start()
Initialize the component by calling the start function. This method should be called only once.
updateCollectedData(collectableData: NolPayPaymentCollectableData)
Update component with collected data by passing implementations of sealed interface representing collectable data for payment flow with a nol Pay card.
This method can be called at any point, even if you have only partially collected data.
To validate the partially collected data, you can refer to the
componentValidationStatus
and receive the validation status when it’s updated.
Show sealed interface NolPayPaymentCollectableData
Show sealed interface NolPayPaymentCollectableData
NolPayCardAndPhoneData
Data class representing nol Pay card and phone data used in payment process.
Hide Properties
Hide Properties
nolPaymentCard
The nol Pay payment card to use for payment is retrieved using NolPayLinkedCardsComponent.
NolPayTagData
Data class representing nol Pay tag data collected during the payment process.
Hide Properties
Hide Properties
An NFC tag decoded using NolPayNfcComponent.
submit()
Call
submit
function in order to process collected data and move component to next state.componentStep: Flow<NolPayPaymentStep>
componentValidationStatus: Flow<PrimerValidationStatus<NolPayPaymentCollectableData>>
The
PrimerValidationStatus
interface encompasses a range of validation statuses.Show sealed interface PrimerValidationStatus
Show sealed interface PrimerValidationStatus
Validating<NolPayPaymentCollectableData>
Indicates that data is currently in the process of being validated.
Hide Properties
Hide Properties
The data being validated.
Valid<NolPayPaymentCollectableData>
Indicates that the data has successfully been validated.
Hide Properties
Hide Properties
The successfully validated data.
Invalid<NolPayPaymentCollectableData>
Indicates that the data has been considered invalid after validation.
Hide Properties
Hide Properties
List of
PrimerValidationError
objects that represent data validation errors emitted by this component.The data that failed validation.
Error<NolPayPaymentCollectableData>
Represents the status when an error occurred during the validation process.
Hide Properties
Hide Properties
The specific
PrimerError
that occurred during validation.Show PrimerValidationError
Show PrimerValidationError
A unique error identifier.
A unique error code.
A error description.
A recovery suggestion for the given error. In case it’s present, use it to try
to recover from error.
A unique diagnostics id for the given error.
The data for which the error occurred.
componentError: Flow<PrimerError>
Get a Flow
of PrimerError objects that represent errors emitted by this component.
Subscribers can observe and handle errors using this Flow.