AddIdentityCertifiedForBidUserRequest.cc 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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/crm/model/AddIdentityCertifiedForBidUserRequest.h>
  17. using AlibabaCloud::Crm::Model::AddIdentityCertifiedForBidUserRequest;
  18. AddIdentityCertifiedForBidUserRequest::AddIdentityCertifiedForBidUserRequest() :
  19. RpcServiceRequest("crm", "2015-04-08", "AddIdentityCertifiedForBidUser")
  20. {
  21. setMethod(HttpRequest::Method::Post);
  22. }
  23. AddIdentityCertifiedForBidUserRequest::~AddIdentityCertifiedForBidUserRequest()
  24. {}
  25. std::string AddIdentityCertifiedForBidUserRequest::getBidType()const
  26. {
  27. return bidType_;
  28. }
  29. void AddIdentityCertifiedForBidUserRequest::setBidType(const std::string& bidType)
  30. {
  31. bidType_ = bidType;
  32. setParameter("BidType", bidType);
  33. }
  34. std::string AddIdentityCertifiedForBidUserRequest::getLicenseNumber()const
  35. {
  36. return licenseNumber_;
  37. }
  38. void AddIdentityCertifiedForBidUserRequest::setLicenseNumber(const std::string& licenseNumber)
  39. {
  40. licenseNumber_ = licenseNumber;
  41. setParameter("LicenseNumber", licenseNumber);
  42. }
  43. std::string AddIdentityCertifiedForBidUserRequest::getLicenseType()const
  44. {
  45. return licenseType_;
  46. }
  47. void AddIdentityCertifiedForBidUserRequest::setLicenseType(const std::string& licenseType)
  48. {
  49. licenseType_ = licenseType;
  50. setParameter("LicenseType", licenseType);
  51. }
  52. std::string AddIdentityCertifiedForBidUserRequest::getPhone()const
  53. {
  54. return phone_;
  55. }
  56. void AddIdentityCertifiedForBidUserRequest::setPhone(const std::string& phone)
  57. {
  58. phone_ = phone;
  59. setParameter("Phone", phone);
  60. }
  61. std::string AddIdentityCertifiedForBidUserRequest::getName()const
  62. {
  63. return name_;
  64. }
  65. void AddIdentityCertifiedForBidUserRequest::setName(const std::string& name)
  66. {
  67. name_ = name;
  68. setParameter("Name", name);
  69. }
  70. std::string AddIdentityCertifiedForBidUserRequest::getPK()const
  71. {
  72. return pK_;
  73. }
  74. void AddIdentityCertifiedForBidUserRequest::setPK(const std::string& pK)
  75. {
  76. pK_ = pK;
  77. setParameter("PK", pK);
  78. }
  79. bool AddIdentityCertifiedForBidUserRequest::getIsEnterprise()const
  80. {
  81. return isEnterprise_;
  82. }
  83. void AddIdentityCertifiedForBidUserRequest::setIsEnterprise(bool isEnterprise)
  84. {
  85. isEnterprise_ = isEnterprise;
  86. setParameter("IsEnterprise", isEnterprise ? "true" : "false");
  87. }