mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
feat(events): Add payment cancel events (#4166)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -27,8 +27,11 @@ pub struct PaymentIntent {
|
||||
pub billing_address_id: Option<String>,
|
||||
pub statement_descriptor_name: Option<String>,
|
||||
pub statement_descriptor_suffix: Option<String>,
|
||||
#[serde(with = "common_utils::custom_serde::iso8601")]
|
||||
pub created_at: PrimitiveDateTime,
|
||||
#[serde(with = "common_utils::custom_serde::iso8601")]
|
||||
pub modified_at: PrimitiveDateTime,
|
||||
#[serde(with = "common_utils::custom_serde::iso8601::option")]
|
||||
pub last_synced: Option<PrimitiveDateTime>,
|
||||
pub setup_future_usage: Option<storage_enums::FutureUsage>,
|
||||
pub off_session: Option<bool>,
|
||||
@ -54,6 +57,7 @@ pub struct PaymentIntent {
|
||||
pub incremental_authorization_allowed: Option<bool>,
|
||||
pub authorization_count: Option<i32>,
|
||||
pub fingerprint_id: Option<String>,
|
||||
#[serde(with = "common_utils::custom_serde::iso8601::option")]
|
||||
pub session_expiry: Option<PrimitiveDateTime>,
|
||||
pub request_external_three_ds_authentication: Option<bool>,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user