Change backend api.

This commit is contained in:
sdk-team
2023-02-24 06:14:02 +00:00
parent 0e44eb04f0
commit ad6d6026c2
5 changed files with 25 additions and 1 deletions

View File

@@ -52,6 +52,15 @@ void ThreeElementsVerificationRequest::setCertCode(const std::string &certCode)
setParameter(std::string("CertCode"), certCode);
}
std::string ThreeElementsVerificationRequest::getRouteName() const {
return routeName_;
}
void ThreeElementsVerificationRequest::setRouteName(const std::string &routeName) {
routeName_ = routeName;
setParameter(std::string("RouteName"), routeName);
}
std::string ThreeElementsVerificationRequest::getMask() const {
return mask_;
}