mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 11:24:45 +08:00
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
29 lines
703 B
Rust
29 lines
703 B
Rust
use common_utils::events::{ApiEventMetric, ApiEventsType};
|
|
use serde::Serialize;
|
|
use utoipa::ToSchema;
|
|
|
|
#[derive(Debug, ToSchema, Clone, Serialize)]
|
|
pub struct PollResponse {
|
|
/// The poll id
|
|
pub poll_id: String,
|
|
/// Status of the poll
|
|
pub status: PollStatus,
|
|
}
|
|
|
|
#[derive(Debug, strum::Display, strum::EnumString, Clone, serde::Serialize, ToSchema)]
|
|
#[strum(serialize_all = "snake_case")]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum PollStatus {
|
|
Pending,
|
|
Completed,
|
|
NotFound,
|
|
}
|
|
|
|
impl ApiEventMetric for PollResponse {
|
|
fn get_api_event_type(&self) -> Option<ApiEventsType> {
|
|
Some(ApiEventsType::Poll {
|
|
poll_id: self.poll_id.clone(),
|
|
})
|
|
}
|
|
}
|