EFL
Models

StatusBlueMedia

Enum representing the status of a BlueMedia identity verification process.

Namespace and purpose

Imoli\EflLeasingSdk\Model\Verification\StatusBlueMedia is an enum that describes the current status of a BlueMedia verification process. It complements ResultBlueMedia in BlueMediaProcessStateResponse.

Class definition

  • Namespace: Imoli\EflLeasingSdk\Model\Verification
  • Type: enum StatusBlueMedia
enum StatusBlueMedia: string
{
    case Ok = 'OK';
    case Error = 'ERROR';
    case Pending = 'PENDING';
}

Values

ValueString valueDescription
Ok'OK'Verification process is in a successful or stable state.
Error'ERROR'An error occurred.
Pending'PENDING'Verification is still in progress.

Usage in the SDK

  • Returned from BlueMediaProcessStateResponse::getStatus().
  • Should be checked by application logic together with the result to decide whether to wait, retry or continue.