mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
11 lines
378 B
Rust
11 lines
378 B
Rust
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
|
|
pub struct OutgoingWebhookLogsRequest {
|
|
pub payment_id: common_utils::id_type::PaymentId,
|
|
pub event_id: Option<String>,
|
|
pub refund_id: Option<String>,
|
|
pub dispute_id: Option<String>,
|
|
pub mandate_id: Option<String>,
|
|
pub payment_method_id: Option<String>,
|
|
pub attempt_id: Option<String>,
|
|
}
|