/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #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 BatchCreateAttendeeResult { public: BatchCreateAttendeeResult(); BatchCreateAttendeeResult(const Aws::AmazonWebServiceResult& result); BatchCreateAttendeeResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The attendee information, including attendees IDs and join tokens.

*/ inline const Aws::Vector& GetAttendees() const{ return m_attendees; } /** *

The attendee information, including attendees IDs and join tokens.

*/ inline void SetAttendees(const Aws::Vector& value) { m_attendees = value; } /** *

The attendee information, including attendees IDs and join tokens.

*/ inline void SetAttendees(Aws::Vector&& value) { m_attendees = std::move(value); } /** *

The attendee information, including attendees IDs and join tokens.

*/ inline BatchCreateAttendeeResult& WithAttendees(const Aws::Vector& value) { SetAttendees(value); return *this;} /** *

The attendee information, including attendees IDs and join tokens.

*/ inline BatchCreateAttendeeResult& WithAttendees(Aws::Vector&& value) { SetAttendees(std::move(value)); return *this;} /** *

The attendee information, including attendees IDs and join tokens.

*/ inline BatchCreateAttendeeResult& AddAttendees(const Attendee& value) { m_attendees.push_back(value); return *this; } /** *

The attendee information, including attendees IDs and join tokens.

*/ inline BatchCreateAttendeeResult& AddAttendees(Attendee&& value) { m_attendees.push_back(std::move(value)); return *this; } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline const Aws::Vector& GetErrors() const{ return m_errors; } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline void SetErrors(const Aws::Vector& value) { m_errors = value; } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline void SetErrors(Aws::Vector&& value) { m_errors = std::move(value); } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline BatchCreateAttendeeResult& WithErrors(const Aws::Vector& value) { SetErrors(value); return *this;} /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline BatchCreateAttendeeResult& WithErrors(Aws::Vector&& value) { SetErrors(std::move(value)); return *this;} /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline BatchCreateAttendeeResult& AddErrors(const CreateAttendeeError& value) { m_errors.push_back(value); return *this; } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline BatchCreateAttendeeResult& AddErrors(CreateAttendeeError&& value) { m_errors.push_back(std::move(value)); return *this; } private: Aws::Vector m_attendees; Aws::Vector m_errors; }; } // namespace Model } // namespace Chime } // namespace Aws