/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Chime { namespace Model { class GetAccountSettingsResult { public: AWS_CHIME_API GetAccountSettingsResult(); AWS_CHIME_API GetAccountSettingsResult(const Aws::AmazonWebServiceResult& result); AWS_CHIME_API 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;} 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 Chime } // namespace Aws