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

The user settings.

*/ inline const UserSettings& GetUserSettings() const{ return m_userSettings; } /** *

The user settings.

*/ inline void SetUserSettings(const UserSettings& value) { m_userSettings = value; } /** *

The user settings.

*/ inline void SetUserSettings(UserSettings&& value) { m_userSettings = std::move(value); } /** *

The user settings.

*/ inline GetUserSettingsResult& WithUserSettings(const UserSettings& value) { SetUserSettings(value); return *this;} /** *

The user settings.

*/ inline GetUserSettingsResult& WithUserSettings(UserSettings&& value) { SetUserSettings(std::move(value)); return *this;} private: UserSettings m_userSettings; }; } // namespace Model } // namespace Chime } // namespace Aws