mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
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:
committed by
GitHub
parent
1ff273e137
commit
957a228525
@ -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))
|
||||
|
||||
Reference in New Issue
Block a user