/** * 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 UpdateAccountResult { public: UpdateAccountResult(); UpdateAccountResult(const Aws::AmazonWebServiceResult& result); UpdateAccountResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The updated Amazon Chime account details.

*/ inline const Account& GetAccount() const{ return m_account; } /** *

The updated Amazon Chime account details.

*/ inline void SetAccount(const Account& value) { m_account = value; } /** *

The updated Amazon Chime account details.

*/ inline void SetAccount(Account&& value) { m_account = std::move(value); } /** *

The updated Amazon Chime account details.

*/ inline UpdateAccountResult& WithAccount(const Account& value) { SetAccount(value); return *this;} /** *

The updated Amazon Chime account details.

*/ inline UpdateAccountResult& WithAccount(Account&& value) { SetAccount(std::move(value)); return *this;} private: Account m_account; }; } // namespace Model } // namespace Chime } // namespace Aws