feat(samsung_pay): collect customer address details form Samsung Pay based on business profile config and connector required fields (#7320)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Shankar Singh C
2025-02-22 13:23:33 +05:30
committed by GitHub
parent 1a7ee233db
commit c14519ebd9
4 changed files with 144 additions and 48 deletions

View File

@ -6861,6 +6861,10 @@ pub struct SamsungPaySessionTokenResponse {
pub protocol: SamsungPayProtocolType,
/// List of supported card brands
pub allowed_brands: Vec<String>,
/// Is billing address required to be collected from wallet
pub billing_address_required: bool,
/// Is shipping address required to be collected from wallet
pub shipping_address_required: bool,
}
#[derive(Debug, Clone, Eq, PartialEq, serde::Serialize, ToSchema)]