| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <alibabacloud/companyreg/model/SubmitIcpSolutionRequest.h>
- using AlibabaCloud::Companyreg::Model::SubmitIcpSolutionRequest;
- SubmitIcpSolutionRequest::SubmitIcpSolutionRequest() :
- RpcServiceRequest("companyreg", "2019-05-08", "SubmitIcpSolution")
- {
- setMethod(HttpRequest::Method::Post);
- }
- SubmitIcpSolutionRequest::~SubmitIcpSolutionRequest()
- {}
- std::string SubmitIcpSolutionRequest::getArea()const
- {
- return area_;
- }
- void SubmitIcpSolutionRequest::setArea(const std::string& area)
- {
- area_ = area;
- setBodyParameter("Area", area);
- }
- std::string SubmitIcpSolutionRequest::getActionType()const
- {
- return actionType_;
- }
- void SubmitIcpSolutionRequest::setActionType(const std::string& actionType)
- {
- actionType_ = actionType;
- setBodyParameter("ActionType", actionType);
- }
- std::string SubmitIcpSolutionRequest::getIntentionBizId()const
- {
- return intentionBizId_;
- }
- void SubmitIcpSolutionRequest::setIntentionBizId(const std::string& intentionBizId)
- {
- intentionBizId_ = intentionBizId;
- setBodyParameter("IntentionBizId", intentionBizId);
- }
- std::string SubmitIcpSolutionRequest::getSource()const
- {
- return source_;
- }
- void SubmitIcpSolutionRequest::setSource(const std::string& source)
- {
- source_ = source;
- setBodyParameter("Source", source);
- }
- std::string SubmitIcpSolutionRequest::getUserId()const
- {
- return userId_;
- }
- void SubmitIcpSolutionRequest::setUserId(const std::string& userId)
- {
- userId_ = userId;
- setBodyParameter("UserId", userId);
- }
- int SubmitIcpSolutionRequest::getIcpType()const
- {
- return icpType_;
- }
- void SubmitIcpSolutionRequest::setIcpType(int icpType)
- {
- icpType_ = icpType;
- setBodyParameter("IcpType", std::to_string(icpType));
- }
- std::string SubmitIcpSolutionRequest::getCompanyAddress()const
- {
- return companyAddress_;
- }
- void SubmitIcpSolutionRequest::setCompanyAddress(const std::string& companyAddress)
- {
- companyAddress_ = companyAddress;
- setBodyParameter("CompanyAddress", companyAddress);
- }
- std::string SubmitIcpSolutionRequest::getCompanyName()const
- {
- return companyName_;
- }
- void SubmitIcpSolutionRequest::setCompanyName(const std::string& companyName)
- {
- companyName_ = companyName;
- setBodyParameter("CompanyName", companyName);
- }
- std::string SubmitIcpSolutionRequest::getBizId()const
- {
- return bizId_;
- }
- void SubmitIcpSolutionRequest::setBizId(const std::string& bizId)
- {
- bizId_ = bizId;
- setBodyParameter("BizId", bizId);
- }
|