| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*
- * 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/cloudwf/model/ProfileTagRequest.h>
- using AlibabaCloud::Cloudwf::Model::ProfileTagRequest;
- ProfileTagRequest::ProfileTagRequest() :
- RpcServiceRequest("cloudwf", "2017-03-28", "ProfileTag")
- {
- setMethod(HttpRequest::Method::Post);
- }
- ProfileTagRequest::~ProfileTagRequest()
- {}
- std::string ProfileTagRequest::getBeginDate()const
- {
- return beginDate_;
- }
- void ProfileTagRequest::setBeginDate(const std::string& beginDate)
- {
- beginDate_ = beginDate;
- setParameter("BeginDate", beginDate);
- }
- int ProfileTagRequest::getAppType()const
- {
- return appType_;
- }
- void ProfileTagRequest::setAppType(int appType)
- {
- appType_ = appType;
- setParameter("AppType", std::to_string(appType));
- }
- std::string ProfileTagRequest::getAccessKeyId()const
- {
- return accessKeyId_;
- }
- void ProfileTagRequest::setAccessKeyId(const std::string& accessKeyId)
- {
- accessKeyId_ = accessKeyId;
- setParameter("AccessKeyId", accessKeyId);
- }
- long ProfileTagRequest::getAgsid()const
- {
- return agsid_;
- }
- void ProfileTagRequest::setAgsid(long agsid)
- {
- agsid_ = agsid;
- setParameter("Agsid", std::to_string(agsid));
- }
- int ProfileTagRequest::getAreaNumber()const
- {
- return areaNumber_;
- }
- void ProfileTagRequest::setAreaNumber(int areaNumber)
- {
- areaNumber_ = areaNumber;
- setParameter("AreaNumber", std::to_string(areaNumber));
- }
- long ProfileTagRequest::getIdtype()const
- {
- return idtype_;
- }
- void ProfileTagRequest::setIdtype(long idtype)
- {
- idtype_ = idtype;
- setParameter("Idtype", std::to_string(idtype));
- }
- std::string ProfileTagRequest::getEndDate()const
- {
- return endDate_;
- }
- void ProfileTagRequest::setEndDate(const std::string& endDate)
- {
- endDate_ = endDate;
- setParameter("EndDate", endDate);
- }
- std::string ProfileTagRequest::getTag()const
- {
- return tag_;
- }
- void ProfileTagRequest::setTag(const std::string& tag)
- {
- tag_ = tag;
- setParameter("Tag", tag);
- }
|