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

@@ -1 +1 @@
1.36.1464
1.36.1465

View File

@@ -36,6 +36,8 @@ public:
void setAccessKeyId(const std::string &accessKeyId);
std::string getCertCode() const;
void setCertCode(const std::string &certCode);
std::string getRouteName() const;
void setRouteName(const std::string &routeName);
std::string getMask() const;
void setMask(const std::string &mask);
std::string getResultCount() const;
@@ -57,6 +59,7 @@ private:
long resourceOwnerId_;
std::string accessKeyId_;
std::string certCode_;
std::string routeName_;
std::string mask_;
std::string resultCount_;
std::string resourceOwnerAccount_;

View File

@@ -34,6 +34,8 @@ public:
void setResourceOwnerId(long resourceOwnerId);
std::string getAccessKeyId() const;
void setAccessKeyId(const std::string &accessKeyId);
std::string getRouteName() const;
void setRouteName(const std::string &routeName);
std::string getMask() const;
void setMask(const std::string &mask);
std::string getResultCount() const;
@@ -56,6 +58,7 @@ public:
private:
long resourceOwnerId_;
std::string accessKeyId_;
std::string routeName_;
std::string mask_;
std::string resultCount_;
std::string resourceOwnerAccount_;

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_;
}

View File

@@ -43,6 +43,15 @@ void TwoElementsVerificationRequest::setAccessKeyId(const std::string &accessKey
setParameter(std::string("AccessKeyId"), accessKeyId);
}
std::string TwoElementsVerificationRequest::getRouteName() const {
return routeName_;
}
void TwoElementsVerificationRequest::setRouteName(const std::string &routeName) {
routeName_ = routeName;
setParameter(std::string("RouteName"), routeName);
}
std::string TwoElementsVerificationRequest::getMask() const {
return mask_;
}