VerifyUserAuthenticationRequest.cc 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include <alibabacloud/idaas-doraemon/model/VerifyUserAuthenticationRequest.h>
  17. using AlibabaCloud::Idaas_doraemon::Model::VerifyUserAuthenticationRequest;
  18. VerifyUserAuthenticationRequest::VerifyUserAuthenticationRequest()
  19. : RpcServiceRequest("idaas-doraemon", "2021-05-20", "VerifyUserAuthentication") {
  20. setMethod(HttpRequest::Method::Post);
  21. }
  22. VerifyUserAuthenticationRequest::~VerifyUserAuthenticationRequest() {}
  23. std::string VerifyUserAuthenticationRequest::getLogParams() const {
  24. return logParams_;
  25. }
  26. void VerifyUserAuthenticationRequest::setLogParams(const std::string &logParams) {
  27. logParams_ = logParams;
  28. setParameter(std::string("LogParams"), logParams);
  29. }
  30. std::string VerifyUserAuthenticationRequest::getClientExtendParamsJson() const {
  31. return clientExtendParamsJson_;
  32. }
  33. void VerifyUserAuthenticationRequest::setClientExtendParamsJson(const std::string &clientExtendParamsJson) {
  34. clientExtendParamsJson_ = clientExtendParamsJson;
  35. setParameter(std::string("ClientExtendParamsJson"), clientExtendParamsJson);
  36. }
  37. std::string VerifyUserAuthenticationRequest::getUserId() const {
  38. return userId_;
  39. }
  40. void VerifyUserAuthenticationRequest::setUserId(const std::string &userId) {
  41. userId_ = userId;
  42. setParameter(std::string("UserId"), userId);
  43. }
  44. std::string VerifyUserAuthenticationRequest::getLogTag() const {
  45. return logTag_;
  46. }
  47. void VerifyUserAuthenticationRequest::setLogTag(const std::string &logTag) {
  48. logTag_ = logTag;
  49. setParameter(std::string("LogTag"), logTag);
  50. }
  51. std::string VerifyUserAuthenticationRequest::getServerExtendParamsJson() const {
  52. return serverExtendParamsJson_;
  53. }
  54. void VerifyUserAuthenticationRequest::setServerExtendParamsJson(const std::string &serverExtendParamsJson) {
  55. serverExtendParamsJson_ = serverExtendParamsJson;
  56. setParameter(std::string("ServerExtendParamsJson"), serverExtendParamsJson);
  57. }
  58. std::string VerifyUserAuthenticationRequest::getRequireBindHashBase64() const {
  59. return requireBindHashBase64_;
  60. }
  61. void VerifyUserAuthenticationRequest::setRequireBindHashBase64(const std::string &requireBindHashBase64) {
  62. requireBindHashBase64_ = requireBindHashBase64;
  63. setParameter(std::string("RequireBindHashBase64"), requireBindHashBase64);
  64. }
  65. std::string VerifyUserAuthenticationRequest::getAuthenticationContext() const {
  66. return authenticationContext_;
  67. }
  68. void VerifyUserAuthenticationRequest::setAuthenticationContext(const std::string &authenticationContext) {
  69. authenticationContext_ = authenticationContext;
  70. setParameter(std::string("AuthenticationContext"), authenticationContext);
  71. }
  72. std::string VerifyUserAuthenticationRequest::getRequireChallengeBase64() const {
  73. return requireChallengeBase64_;
  74. }
  75. void VerifyUserAuthenticationRequest::setRequireChallengeBase64(const std::string &requireChallengeBase64) {
  76. requireChallengeBase64_ = requireChallengeBase64;
  77. setParameter(std::string("RequireChallengeBase64"), requireChallengeBase64);
  78. }
  79. std::string VerifyUserAuthenticationRequest::getAuthenticatorType() const {
  80. return authenticatorType_;
  81. }
  82. void VerifyUserAuthenticationRequest::setAuthenticatorType(const std::string &authenticatorType) {
  83. authenticatorType_ = authenticatorType;
  84. setParameter(std::string("AuthenticatorType"), authenticatorType);
  85. }
  86. std::string VerifyUserAuthenticationRequest::getClientExtendParamsJsonSign() const {
  87. return clientExtendParamsJsonSign_;
  88. }
  89. void VerifyUserAuthenticationRequest::setClientExtendParamsJsonSign(const std::string &clientExtendParamsJsonSign) {
  90. clientExtendParamsJsonSign_ = clientExtendParamsJsonSign;
  91. setParameter(std::string("ClientExtendParamsJsonSign"), clientExtendParamsJsonSign);
  92. }
  93. std::string VerifyUserAuthenticationRequest::getUserSourceIp() const {
  94. return userSourceIp_;
  95. }
  96. void VerifyUserAuthenticationRequest::setUserSourceIp(const std::string &userSourceIp) {
  97. userSourceIp_ = userSourceIp;
  98. setParameter(std::string("UserSourceIp"), userSourceIp);
  99. }
  100. std::string VerifyUserAuthenticationRequest::getApplicationExternalId() const {
  101. return applicationExternalId_;
  102. }
  103. void VerifyUserAuthenticationRequest::setApplicationExternalId(const std::string &applicationExternalId) {
  104. applicationExternalId_ = applicationExternalId;
  105. setParameter(std::string("ApplicationExternalId"), applicationExternalId);
  106. }