/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the account settings return values from the
* GetAccountSettings request.See Also:
AWS
* API Reference
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