refactor(connector): [Airwallex] add device_data in payment request (#6881)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Swangi Kumari
2024-12-22 23:01:51 +05:30
committed by GitHub
parent 0f8b0b3bc8
commit 573974b3a5
11 changed files with 156 additions and 2 deletions

View File

@ -1282,6 +1282,15 @@ pub struct BrowserInformation {
/// User-agent of the browser
pub user_agent: Option<String>,
/// The os type of the client device
pub os_type: Option<String>,
/// The os version of the client device
pub os_version: Option<String>,
/// The device model of the client
pub device_model: Option<String>,
}
impl RequestSurchargeDetails {