square_api_client/models/enums/risk_evaluation_risk_level.rs
1//! Model for RiskEvaluationRiskLevel enum.
2
3use serde::{Deserialize, Serialize};
4
5/// The risk level associated with a payment.
6#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
7#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
8pub enum RiskEvaluationRiskLevel {
9 /// Indicates Square is still evaluating the payment.
10 Pending,
11 /// Indicates payment risk is within the normal range.
12 Normal,
13 /// Indicates elevated risk level associated with the payment.
14 Moderate,
15 /// Indicates significantly elevated risk level with the payment.
16 High,
17}