/** * 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 DeviceFarm { namespace Model { /** *

Represents the account settings return values from the * GetAccountSettings request.

See Also:

AWS * API Reference

*/ class AWS_DEVICEFARM_API GetAccountSettingsResult { public: GetAccountSettingsResult(); GetAccountSettingsResult(const Aws::AmazonWebServiceResult& result); GetAccountSettingsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The account settings.

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

The account settings.

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

The account settings.

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

The account settings.

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

The account settings.

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