82 lines
2.5 KiB
C++
82 lines
2.5 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/ft/model/RpcNoDefaultErrorCodeApiRequest.h>
|
|
|
|
using AlibabaCloud::Ft::Model::RpcNoDefaultErrorCodeApiRequest;
|
|
|
|
RpcNoDefaultErrorCodeApiRequest::RpcNoDefaultErrorCodeApiRequest()
|
|
: RpcServiceRequest("ft", "2015-03-03", "RpcNoDefaultErrorCodeApi") {
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
RpcNoDefaultErrorCodeApiRequest::~RpcNoDefaultErrorCodeApiRequest() {}
|
|
|
|
std::string RpcNoDefaultErrorCodeApiRequest::getHttpMe() const {
|
|
return httpMe_;
|
|
}
|
|
|
|
void RpcNoDefaultErrorCodeApiRequest::setHttpMe(const std::string &httpMe) {
|
|
httpMe_ = httpMe;
|
|
setParameter(std::string("HttpMe"), httpMe);
|
|
}
|
|
|
|
std::string RpcNoDefaultErrorCodeApiRequest::getHttpStatusCode() const {
|
|
return httpStatusCode_;
|
|
}
|
|
|
|
void RpcNoDefaultErrorCodeApiRequest::setHttpStatusCode(const std::string &httpStatusCode) {
|
|
httpStatusCode_ = httpStatusCode;
|
|
setParameter(std::string("HttpStatusCode"), httpStatusCode);
|
|
}
|
|
|
|
std::string RpcNoDefaultErrorCodeApiRequest::getSetUser() const {
|
|
return setUser_;
|
|
}
|
|
|
|
void RpcNoDefaultErrorCodeApiRequest::setSetUser(const std::string &setUser) {
|
|
setUser_ = setUser;
|
|
setParameter(std::string("SetUser"), setUser);
|
|
}
|
|
|
|
std::string RpcNoDefaultErrorCodeApiRequest::getCode() const {
|
|
return code_;
|
|
}
|
|
|
|
void RpcNoDefaultErrorCodeApiRequest::setCode(const std::string &code) {
|
|
code_ = code;
|
|
setParameter(std::string("Code"), code);
|
|
}
|
|
|
|
std::string RpcNoDefaultErrorCodeApiRequest::getSuccess() const {
|
|
return success_;
|
|
}
|
|
|
|
void RpcNoDefaultErrorCodeApiRequest::setSuccess(const std::string &success) {
|
|
success_ = success;
|
|
setParameter(std::string("Success"), success);
|
|
}
|
|
|
|
std::string RpcNoDefaultErrorCodeApiRequest::getMessage() const {
|
|
return message_;
|
|
}
|
|
|
|
void RpcNoDefaultErrorCodeApiRequest::setMessage(const std::string &message) {
|
|
message_ = message;
|
|
setParameter(std::string("Message"), message);
|
|
}
|
|
|