> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# MfaPollingResult

Result object returned by [useMfaPolling](/docs/libraries/acul/react-sdk/API-Reference/Hooks/useMfaPolling).

## Properties

<ParamField body="isRunning" type="boolean">
  Indicates whether the MFA push polling process is currently active.

  * `true` — Polling is running and awaiting completion.
  * `false` — Polling has stopped, either due to completion,
    manual cancellation, or component unmount.
</ParamField>

<ParamField body="startPolling()" type="void">
  Starts or resumes the polling process.

  * If polling is already active, this call has no effect.
  * If previously stopped, calling this restarts the polling loop.
</ParamField>

<ParamField body="stopPolling()" type="void">
  Stops the polling process immediately.

  * Cancels any scheduled timers or in-flight requests.
  * Safe to call multiple times; subsequent calls have no effect.
</ParamField>
