96 lines
2.6 KiB
C++
96 lines
2.6 KiB
C++
/*
|
|
* 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/cloudesl/model/UpdateCompanyTemplateRequest.h>
|
|
|
|
using AlibabaCloud::Cloudesl::Model::UpdateCompanyTemplateRequest;
|
|
|
|
UpdateCompanyTemplateRequest::UpdateCompanyTemplateRequest() :
|
|
RpcServiceRequest("cloudesl", "2020-02-01", "UpdateCompanyTemplate")
|
|
{
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
UpdateCompanyTemplateRequest::~UpdateCompanyTemplateRequest()
|
|
{}
|
|
|
|
std::string UpdateCompanyTemplateRequest::getExtraParams()const
|
|
{
|
|
return extraParams_;
|
|
}
|
|
|
|
void UpdateCompanyTemplateRequest::setExtraParams(const std::string& extraParams)
|
|
{
|
|
extraParams_ = extraParams;
|
|
setBodyParameter("ExtraParams", extraParams);
|
|
}
|
|
|
|
std::string UpdateCompanyTemplateRequest::getScene()const
|
|
{
|
|
return scene_;
|
|
}
|
|
|
|
void UpdateCompanyTemplateRequest::setScene(const std::string& scene)
|
|
{
|
|
scene_ = scene;
|
|
setBodyParameter("Scene", scene);
|
|
}
|
|
|
|
std::string UpdateCompanyTemplateRequest::getTemplateVersion()const
|
|
{
|
|
return templateVersion_;
|
|
}
|
|
|
|
void UpdateCompanyTemplateRequest::setTemplateVersion(const std::string& templateVersion)
|
|
{
|
|
templateVersion_ = templateVersion;
|
|
setBodyParameter("TemplateVersion", templateVersion);
|
|
}
|
|
|
|
std::string UpdateCompanyTemplateRequest::getTemplateName()const
|
|
{
|
|
return templateName_;
|
|
}
|
|
|
|
void UpdateCompanyTemplateRequest::setTemplateName(const std::string& templateName)
|
|
{
|
|
templateName_ = templateName;
|
|
setBodyParameter("TemplateName", templateName);
|
|
}
|
|
|
|
std::string UpdateCompanyTemplateRequest::getTemplateSceneId()const
|
|
{
|
|
return templateSceneId_;
|
|
}
|
|
|
|
void UpdateCompanyTemplateRequest::setTemplateSceneId(const std::string& templateSceneId)
|
|
{
|
|
templateSceneId_ = templateSceneId;
|
|
setBodyParameter("TemplateSceneId", templateSceneId);
|
|
}
|
|
|
|
std::string UpdateCompanyTemplateRequest::getTemplateId()const
|
|
{
|
|
return templateId_;
|
|
}
|
|
|
|
void UpdateCompanyTemplateRequest::setTemplateId(const std::string& templateId)
|
|
{
|
|
templateId_ = templateId;
|
|
setBodyParameter("TemplateId", templateId);
|
|
}
|
|
|