/** * 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 Chime { namespace Model { class AWS_CHIME_API BatchUpdateUserResult { public: BatchUpdateUserResult(); BatchUpdateUserResult(const Aws::AmazonWebServiceResult& result); BatchUpdateUserResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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

*/ inline const Aws::Vector& GetUserErrors() const{ return m_userErrors; } /** *

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

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

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

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

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

*/ inline BatchUpdateUserResult& WithUserErrors(const Aws::Vector& value) { SetUserErrors(value); return *this;} /** *

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

*/ inline BatchUpdateUserResult& WithUserErrors(Aws::Vector&& value) { SetUserErrors(std::move(value)); return *this;} /** *

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

*/ inline BatchUpdateUserResult& AddUserErrors(const UserError& value) { m_userErrors.push_back(value); return *this; } /** *

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

*/ inline BatchUpdateUserResult& AddUserErrors(UserError&& value) { m_userErrors.push_back(std::move(value)); return *this; } private: Aws::Vector m_userErrors; }; } // namespace Model } // namespace Chime } // namespace Aws