CreateMergeFaceGroupsJobRequest.cc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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/imm/model/CreateMergeFaceGroupsJobRequest.h>
  17. using AlibabaCloud::Imm::Model::CreateMergeFaceGroupsJobRequest;
  18. CreateMergeFaceGroupsJobRequest::CreateMergeFaceGroupsJobRequest()
  19. : RpcServiceRequest("imm", "2017-09-06", "CreateMergeFaceGroupsJob") {
  20. setMethod(HttpRequest::Method::Post);
  21. }
  22. CreateMergeFaceGroupsJobRequest::~CreateMergeFaceGroupsJobRequest() {}
  23. std::string CreateMergeFaceGroupsJobRequest::getProject() const {
  24. return project_;
  25. }
  26. void CreateMergeFaceGroupsJobRequest::setProject(const std::string &project) {
  27. project_ = project;
  28. setParameter(std::string("Project"), project);
  29. }
  30. std::string CreateMergeFaceGroupsJobRequest::getAccessKeyId() const {
  31. return accessKeyId_;
  32. }
  33. void CreateMergeFaceGroupsJobRequest::setAccessKeyId(const std::string &accessKeyId) {
  34. accessKeyId_ = accessKeyId;
  35. setParameter(std::string("AccessKeyId"), accessKeyId);
  36. }
  37. std::string CreateMergeFaceGroupsJobRequest::getNotifyEndpoint() const {
  38. return notifyEndpoint_;
  39. }
  40. void CreateMergeFaceGroupsJobRequest::setNotifyEndpoint(const std::string &notifyEndpoint) {
  41. notifyEndpoint_ = notifyEndpoint;
  42. setParameter(std::string("NotifyEndpoint"), notifyEndpoint);
  43. }
  44. std::string CreateMergeFaceGroupsJobRequest::getCustomMessage() const {
  45. return customMessage_;
  46. }
  47. void CreateMergeFaceGroupsJobRequest::setCustomMessage(const std::string &customMessage) {
  48. customMessage_ = customMessage;
  49. setParameter(std::string("CustomMessage"), customMessage);
  50. }
  51. std::string CreateMergeFaceGroupsJobRequest::getGroupIdFrom() const {
  52. return groupIdFrom_;
  53. }
  54. void CreateMergeFaceGroupsJobRequest::setGroupIdFrom(const std::string &groupIdFrom) {
  55. groupIdFrom_ = groupIdFrom;
  56. setParameter(std::string("GroupIdFrom"), groupIdFrom);
  57. }
  58. std::string CreateMergeFaceGroupsJobRequest::getNotifyTopicName() const {
  59. return notifyTopicName_;
  60. }
  61. void CreateMergeFaceGroupsJobRequest::setNotifyTopicName(const std::string &notifyTopicName) {
  62. notifyTopicName_ = notifyTopicName;
  63. setParameter(std::string("NotifyTopicName"), notifyTopicName);
  64. }
  65. std::string CreateMergeFaceGroupsJobRequest::getGroupIdTo() const {
  66. return groupIdTo_;
  67. }
  68. void CreateMergeFaceGroupsJobRequest::setGroupIdTo(const std::string &groupIdTo) {
  69. groupIdTo_ = groupIdTo;
  70. setParameter(std::string("GroupIdTo"), groupIdTo);
  71. }
  72. std::string CreateMergeFaceGroupsJobRequest::getSetId() const {
  73. return setId_;
  74. }
  75. void CreateMergeFaceGroupsJobRequest::setSetId(const std::string &setId) {
  76. setId_ = setId;
  77. setParameter(std::string("SetId"), setId);
  78. }