You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following example should be a valid route with two parameters in two segments.
let mut router = matchit::Router::new();
let result = router.insert("cards/{cardReferenceToken}/authorizationholds/{authorizationHoldExternalReferenceId}:decrease", true);
match result {
Ok(_) => {},
Err(err) => panic!("That should work but ended in: {err}"),
}
The following example should be a valid route with two parameters in two segments.
For reference:
https://api.mambu.com/#cards-decreaseauthorizationhold
The text was updated successfully, but these errors were encountered: