/** * 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 BatchUpdateUserResult { public: AWS_CHIME_API BatchUpdateUserResult(); AWS_CHIME_API BatchUpdateUserResult(const Aws::AmazonWebServiceResult& result); AWS_CHIME_API 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; } 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 BatchUpdateUserResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline BatchUpdateUserResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline BatchUpdateUserResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_userErrors; Aws::String m_requestId; }; } // namespace Model } // namespace Chime } // namespace Aws