feat(router): send message_version and directory_server_id in next_action block of three_ds_data for external 3ds flow (#4715)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Sai Harsha Vardhan
2024-05-23 12:42:14 +05:30
committed by GitHub
parent da2dc10f3d
commit 13f6efc7e8
12 changed files with 40 additions and 0 deletions

View File

@ -2963,6 +2963,10 @@ pub struct ThreeDsData {
pub three_ds_method_details: ThreeDsMethodData,
/// Poll config for a connector
pub poll_config: PollConfigResponse,
/// Message Version
pub message_version: Option<String>,
/// Directory Server ID
pub directory_server_id: Option<String>,
}
#[derive(Clone, Debug, Eq, PartialEq, serde::Serialize, ToSchema)]