/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/finspace-data/FinSpaceData_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace FinSpaceData { namespace Model { class UpdateUserResult { public: AWS_FINSPACEDATA_API UpdateUserResult(); AWS_FINSPACEDATA_API UpdateUserResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_FINSPACEDATA_API UpdateUserResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The unique identifier of the updated user account.</p> */ inline const Aws::String& GetUserId() const{ return m_userId; } /** * <p>The unique identifier of the updated user account.</p> */ inline void SetUserId(const Aws::String& value) { m_userId = value; } /** * <p>The unique identifier of the updated user account.</p> */ inline void SetUserId(Aws::String&& value) { m_userId = std::move(value); } /** * <p>The unique identifier of the updated user account.</p> */ inline void SetUserId(const char* value) { m_userId.assign(value); } /** * <p>The unique identifier of the updated user account.</p> */ inline UpdateUserResult& WithUserId(const Aws::String& value) { SetUserId(value); return *this;} /** * <p>The unique identifier of the updated user account.</p> */ inline UpdateUserResult& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;} /** * <p>The unique identifier of the updated user account.</p> */ inline UpdateUserResult& WithUserId(const char* value) { SetUserId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateUserResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateUserResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateUserResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_userId; Aws::String m_requestId; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws