Support Latest APIs.

This commit is contained in:
sdk-team
2022-06-21 08:26:06 +00:00
parent e46b4256d6
commit 8f41f27e09
4 changed files with 16 additions and 1 deletions

View File

@@ -83,3 +83,12 @@ void ListListenersRequest::setMaxResults(int maxResults) {
setParameter(std::string("MaxResults"), std::to_string(maxResults));
}
std::string ListListenersRequest::getStatus() const {
return status_;
}
void ListListenersRequest::setStatus(const std::string &status) {
status_ = status;
setParameter(std::string("Status"), status);
}