mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
Co-authored-by: Kashif <mohammed.kashif@juspay.in> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
22 lines
478 B
Rust
22 lines
478 B
Rust
use common_utils::pii;
|
|
use masking::Secret;
|
|
|
|
use crate::enums;
|
|
|
|
#[derive(serde::Deserialize, Debug, serde::Serialize)]
|
|
pub struct ReconUpdateMerchantRequest {
|
|
pub merchant_id: String,
|
|
pub recon_status: enums::ReconStatus,
|
|
pub user_email: pii::Email,
|
|
}
|
|
|
|
#[derive(Debug, serde::Serialize)]
|
|
pub struct ReconTokenResponse {
|
|
pub token: Secret<String>,
|
|
}
|
|
|
|
#[derive(Debug, serde::Serialize)]
|
|
pub struct ReconStatusResponse {
|
|
pub recon_status: enums::ReconStatus,
|
|
}
|