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

The Amazon Chime account settings.

*/ inline const AccountSettings& GetAccountSettings() const{ return m_accountSettings; } /** *

The Amazon Chime account settings.

*/ inline void SetAccountSettings(const AccountSettings& value) { m_accountSettings = value; } /** *

The Amazon Chime account settings.

*/ inline void SetAccountSettings(AccountSettings&& value) { m_accountSettings = std::move(value); } /** *

The Amazon Chime account settings.

*/ inline GetAccountSettingsResult& WithAccountSettings(const AccountSettings& value) { SetAccountSettings(value); return *this;} /** *

The Amazon Chime account settings.

*/ inline GetAccountSettingsResult& WithAccountSettings(AccountSettings&& value) { SetAccountSettings(std::move(value)); return *this;} private: AccountSettings m_accountSettings; }; } // namespace Model } // namespace Chime } // namespace Aws