feat(router): add capability to force challenge for 3DS Payments through Netcetera and send few optional fields (#7429)

Co-authored-by: Sk Sakil Mostak <skmahim71@gmail.com>
Co-authored-by: Sakil Mostak <73734619+Sakilmostak@users.noreply.github.com>
This commit is contained in:
Sai Harsha Vardhan
2025-03-06 18:32:27 +05:30
committed by GitHub
parent 1ff273e137
commit 957a228525
17 changed files with 195 additions and 70 deletions

View File

@ -207,6 +207,11 @@ impl SemanticVersion {
pub fn get_major(&self) -> u64 {
self.0.major
}
/// returns minor version number
pub fn get_minor(&self) -> u64 {
self.0.minor
}
/// Constructs new SemanticVersion instance
pub fn new(major: u64, minor: u64, patch: u64) -> Self {
Self(Version::new(major, minor, patch))