/**
* 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;} 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 GetAccountSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetAccountSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetAccountSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AccountSettings m_accountSettings; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws