mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 11:06:50 +08:00
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Sanchith Hegde <22217505+SanchithHegde@users.noreply.github.com>
13 lines
429 B
Rust
13 lines
429 B
Rust
#[derive(Debug, Clone, serde::Serialize)]
|
|
pub struct ApplePayCertificatesMigrationResponse {
|
|
pub migration_successful: Vec<String>,
|
|
pub migration_failed: Vec<String>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, PartialEq, Eq)]
|
|
pub struct ApplePayCertificatesMigrationRequest {
|
|
pub merchant_ids: Vec<String>,
|
|
}
|
|
|
|
impl common_utils::events::ApiEventMetric for ApplePayCertificatesMigrationRequest {}
|