|
|
@@ -25,31 +25,31 @@ BatchAddFeishuUsersRequest::BatchAddFeishuUsersRequest()
|
|
|
|
|
|
BatchAddFeishuUsersRequest::~BatchAddFeishuUsersRequest() {}
|
|
|
|
|
|
-bool BatchAddFeishuUsersRequest::getIsAdmin() const {
|
|
|
- return isAdmin_;
|
|
|
+std::string BatchAddFeishuUsersRequest::getAccessPoint() const {
|
|
|
+ return accessPoint_;
|
|
|
}
|
|
|
|
|
|
-void BatchAddFeishuUsersRequest::setIsAdmin(bool isAdmin) {
|
|
|
- isAdmin_ = isAdmin;
|
|
|
- setParameter(std::string("IsAdmin"), isAdmin ? "true" : "false");
|
|
|
+void BatchAddFeishuUsersRequest::setAccessPoint(const std::string &accessPoint) {
|
|
|
+ accessPoint_ = accessPoint;
|
|
|
+ setParameter(std::string("AccessPoint"), accessPoint);
|
|
|
}
|
|
|
|
|
|
-std::string BatchAddFeishuUsersRequest::getFeishuUsers() const {
|
|
|
- return feishuUsers_;
|
|
|
+bool BatchAddFeishuUsersRequest::getIsAuthAdmin() const {
|
|
|
+ return isAuthAdmin_;
|
|
|
}
|
|
|
|
|
|
-void BatchAddFeishuUsersRequest::setFeishuUsers(const std::string &feishuUsers) {
|
|
|
- feishuUsers_ = feishuUsers;
|
|
|
- setParameter(std::string("FeishuUsers"), feishuUsers);
|
|
|
+void BatchAddFeishuUsersRequest::setIsAuthAdmin(bool isAuthAdmin) {
|
|
|
+ isAuthAdmin_ = isAuthAdmin;
|
|
|
+ setParameter(std::string("IsAuthAdmin"), isAuthAdmin ? "true" : "false");
|
|
|
}
|
|
|
|
|
|
-std::string BatchAddFeishuUsersRequest::getAccessPoint() const {
|
|
|
- return accessPoint_;
|
|
|
+bool BatchAddFeishuUsersRequest::getIsAdmin() const {
|
|
|
+ return isAdmin_;
|
|
|
}
|
|
|
|
|
|
-void BatchAddFeishuUsersRequest::setAccessPoint(const std::string &accessPoint) {
|
|
|
- accessPoint_ = accessPoint;
|
|
|
- setParameter(std::string("AccessPoint"), accessPoint);
|
|
|
+void BatchAddFeishuUsersRequest::setIsAdmin(bool isAdmin) {
|
|
|
+ isAdmin_ = isAdmin;
|
|
|
+ setParameter(std::string("IsAdmin"), isAdmin ? "true" : "false");
|
|
|
}
|
|
|
|
|
|
int BatchAddFeishuUsersRequest::getUserType() const {
|
|
|
@@ -79,12 +79,12 @@ void BatchAddFeishuUsersRequest::setUserGroupIds(const std::string &userGroupIds
|
|
|
setParameter(std::string("UserGroupIds"), userGroupIds);
|
|
|
}
|
|
|
|
|
|
-bool BatchAddFeishuUsersRequest::getIsAuthAdmin() const {
|
|
|
- return isAuthAdmin_;
|
|
|
+std::string BatchAddFeishuUsersRequest::getFeishuUsers() const {
|
|
|
+ return feishuUsers_;
|
|
|
}
|
|
|
|
|
|
-void BatchAddFeishuUsersRequest::setIsAuthAdmin(bool isAuthAdmin) {
|
|
|
- isAuthAdmin_ = isAuthAdmin;
|
|
|
- setParameter(std::string("IsAuthAdmin"), isAuthAdmin ? "true" : "false");
|
|
|
+void BatchAddFeishuUsersRequest::setFeishuUsers(const std::string &feishuUsers) {
|
|
|
+ feishuUsers_ = feishuUsers;
|
|
|
+ setParameter(std::string("FeishuUsers"), feishuUsers);
|
|
|
}
|
|
|
|