Models
ReauthenticationAction
Enum describing what action should be taken after restoring authentication.
Namespace and purpose
Imoli\EflLeasingSdk\Model\Restoration\ReauthenticationAction is an enum indicating what should happen after a restoration call.
It is used inside AuthenticationRestorationResult.
Class definition
- Namespace:
Imoli\EflLeasingSdk\Model\Restoration - Type: enum
ReauthenticationAction
enum ReauthenticationAction: string
{
case None = 'None';
case PaymentPending = 'PaymentPending';
case PaymentAccepted = 'PaymentAccepted';
}
Values
| Value | String value | Description |
|---|---|---|
None | 'None' | No additional action is required. |
PaymentPending | 'PaymentPending' | Payment is pending and may need to be completed. |
PaymentAccepted | 'PaymentAccepted' | Payment has been accepted. |
Usage in the SDK
- Interpreted by consumers of
EflClient::restoreCustomerSessionByOrderIdandrestoreSessionAfterSigningto decide how to proceed in the UI or backend.