Operation Decision
The operation decision domain represents errors related to the decision.
- iOS (Swift)
- Android (Java)
enum Error.OperationDecisionDomainCode {
case requireBiometricAuthentication
case requirePINAuthentication
case alreadyDecided
case cantDecideWithoutGettingDetails
/// The operation requires a precise location and none was shared with the approval.
case requirePreciseLocation
/// The operation requires a confirmation code and no option was picked before approving it.
case requireConfirmationCode
/// The user picked the wrong confirmation code. Final: the operation failed and cannot be decided again.
case wrongConfirmationCode
}
public enum OperationDecisionDomainCode {
REQUIRE_BIOMETRIC_AUTHENTICATION,
REQUIRE_PIN_AUTHENTICATION,
ALREADY_DECIDED,
CANT_DECIDE_WITHOUT_GETTING_DETAILS,
EXPIRED,
/** The operation requires a precise location and none was shared with the approval. */
REQUIRE_PRECISE_LOCATION,
/** The operation requires a confirmation code and no option was picked before approving it. */
REQUIRE_CONFIRMATION_CODE,
/** The user picked the wrong confirmation code. Final: the operation failed and cannot be decided again. */
WRONG_CONFIRMATION_CODE;
}