| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- * 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/retailcloud/model/ResetAccountPasswordRequest.h>
- using AlibabaCloud::Retailcloud::Model::ResetAccountPasswordRequest;
- ResetAccountPasswordRequest::ResetAccountPasswordRequest() :
- RpcServiceRequest("retailcloud", "2018-03-13", "ResetAccountPassword")
- {
- setMethod(HttpRequest::Method::Post);
- }
- ResetAccountPasswordRequest::~ResetAccountPasswordRequest()
- {}
- std::string ResetAccountPasswordRequest::getAccountPassword()const
- {
- return accountPassword_;
- }
- void ResetAccountPasswordRequest::setAccountPassword(const std::string& accountPassword)
- {
- accountPassword_ = accountPassword;
- setBodyParameter("AccountPassword", accountPassword);
- }
- std::string ResetAccountPasswordRequest::getAccountName()const
- {
- return accountName_;
- }
- void ResetAccountPasswordRequest::setAccountName(const std::string& accountName)
- {
- accountName_ = accountName;
- setBodyParameter("AccountName", accountName);
- }
- std::string ResetAccountPasswordRequest::getDbInstanceId()const
- {
- return dbInstanceId_;
- }
- void ResetAccountPasswordRequest::setDbInstanceId(const std::string& dbInstanceId)
- {
- dbInstanceId_ = dbInstanceId;
- setBodyParameter("DbInstanceId", dbInstanceId);
- }
|