/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace NimbleStudio { namespace Model { class GetStudioMemberResult { public: AWS_NIMBLESTUDIO_API GetStudioMemberResult(); AWS_NIMBLESTUDIO_API GetStudioMemberResult(const Aws::AmazonWebServiceResult& result); AWS_NIMBLESTUDIO_API GetStudioMemberResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The member.

*/ inline const StudioMembership& GetMember() const{ return m_member; } /** *

The member.

*/ inline void SetMember(const StudioMembership& value) { m_member = value; } /** *

The member.

*/ inline void SetMember(StudioMembership&& value) { m_member = std::move(value); } /** *

The member.

*/ inline GetStudioMemberResult& WithMember(const StudioMembership& value) { SetMember(value); return *this;} /** *

The member.

*/ inline GetStudioMemberResult& WithMember(StudioMembership&& value) { SetMember(std::move(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 GetStudioMemberResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetStudioMemberResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetStudioMemberResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: StudioMembership m_member; Aws::String m_requestId; }; } // namespace Model } // namespace NimbleStudio } // namespace Aws