feat(session): Added dpa_client_id, provider to click to pay session response (#7683)

This commit is contained in:
Sahkal Poddar
2025-04-04 14:38:20 +05:30
committed by GitHub
parent 5e9e9238cf
commit fbc092f7b1
8 changed files with 57 additions and 0 deletions

View File

@ -8165,6 +8165,10 @@ pub struct ClickToPaySessionResponse {
#[schema(max_length = 255, value_type = Option<String>, example = "johntest@test.com")]
pub email: Option<Email>,
pub phone_country_code: Option<String>,
/// provider Eg: Visa, Mastercard
#[schema(value_type = Option<CtpServiceProvider>)]
pub provider: Option<api_enums::CtpServiceProvider>,
pub dpa_client_id: Option<String>,
}
#[cfg(feature = "v1")]