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

The attendee information, including attendee ID and join token.

*/ inline const Attendee& GetAttendee() const{ return m_attendee; } /** *

The attendee information, including attendee ID and join token.

*/ inline void SetAttendee(const Attendee& value) { m_attendee = value; } /** *

The attendee information, including attendee ID and join token.

*/ inline void SetAttendee(Attendee&& value) { m_attendee = std::move(value); } /** *

The attendee information, including attendee ID and join token.

*/ inline CreateAttendeeResult& WithAttendee(const Attendee& value) { SetAttendee(value); return *this;} /** *

The attendee information, including attendee ID and join token.

*/ inline CreateAttendeeResult& WithAttendee(Attendee&& value) { SetAttendee(std::move(value)); return *this;} private: Attendee m_attendee; }; } // namespace Model } // namespace Chime } // namespace Aws