/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Chime { namespace Model { /** *

The user ID and user fields to update, used with the BatchUpdateUser * action.

See Also:

AWS * API Reference

*/ class UpdateUserRequestItem { public: AWS_CHIME_API UpdateUserRequestItem(); AWS_CHIME_API UpdateUserRequestItem(Aws::Utils::Json::JsonView jsonValue); AWS_CHIME_API UpdateUserRequestItem& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The user ID.

*/ inline const Aws::String& GetUserId() const{ return m_userId; } /** *

The user ID.

*/ inline bool UserIdHasBeenSet() const { return m_userIdHasBeenSet; } /** *

The user ID.

*/ inline void SetUserId(const Aws::String& value) { m_userIdHasBeenSet = true; m_userId = value; } /** *

The user ID.

*/ inline void SetUserId(Aws::String&& value) { m_userIdHasBeenSet = true; m_userId = std::move(value); } /** *

The user ID.

*/ inline void SetUserId(const char* value) { m_userIdHasBeenSet = true; m_userId.assign(value); } /** *

The user ID.

*/ inline UpdateUserRequestItem& WithUserId(const Aws::String& value) { SetUserId(value); return *this;} /** *

The user ID.

*/ inline UpdateUserRequestItem& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;} /** *

The user ID.

*/ inline UpdateUserRequestItem& WithUserId(const char* value) { SetUserId(value); return *this;} /** *

The user license type.

*/ inline const License& GetLicenseType() const{ return m_licenseType; } /** *

The user license type.

*/ inline bool LicenseTypeHasBeenSet() const { return m_licenseTypeHasBeenSet; } /** *

The user license type.

*/ inline void SetLicenseType(const License& value) { m_licenseTypeHasBeenSet = true; m_licenseType = value; } /** *

The user license type.

*/ inline void SetLicenseType(License&& value) { m_licenseTypeHasBeenSet = true; m_licenseType = std::move(value); } /** *

The user license type.

*/ inline UpdateUserRequestItem& WithLicenseType(const License& value) { SetLicenseType(value); return *this;} /** *

The user license type.

*/ inline UpdateUserRequestItem& WithLicenseType(License&& value) { SetLicenseType(std::move(value)); return *this;} /** *

The user type.

*/ inline const UserType& GetUserType() const{ return m_userType; } /** *

The user type.

*/ inline bool UserTypeHasBeenSet() const { return m_userTypeHasBeenSet; } /** *

The user type.

*/ inline void SetUserType(const UserType& value) { m_userTypeHasBeenSet = true; m_userType = value; } /** *

The user type.

*/ inline void SetUserType(UserType&& value) { m_userTypeHasBeenSet = true; m_userType = std::move(value); } /** *

The user type.

*/ inline UpdateUserRequestItem& WithUserType(const UserType& value) { SetUserType(value); return *this;} /** *

The user type.

*/ inline UpdateUserRequestItem& WithUserType(UserType&& value) { SetUserType(std::move(value)); return *this;} /** *

The Alexa for Business metadata.

*/ inline const AlexaForBusinessMetadata& GetAlexaForBusinessMetadata() const{ return m_alexaForBusinessMetadata; } /** *

The Alexa for Business metadata.

*/ inline bool AlexaForBusinessMetadataHasBeenSet() const { return m_alexaForBusinessMetadataHasBeenSet; } /** *

The Alexa for Business metadata.

*/ inline void SetAlexaForBusinessMetadata(const AlexaForBusinessMetadata& value) { m_alexaForBusinessMetadataHasBeenSet = true; m_alexaForBusinessMetadata = value; } /** *

The Alexa for Business metadata.

*/ inline void SetAlexaForBusinessMetadata(AlexaForBusinessMetadata&& value) { m_alexaForBusinessMetadataHasBeenSet = true; m_alexaForBusinessMetadata = std::move(value); } /** *

The Alexa for Business metadata.

*/ inline UpdateUserRequestItem& WithAlexaForBusinessMetadata(const AlexaForBusinessMetadata& value) { SetAlexaForBusinessMetadata(value); return *this;} /** *

The Alexa for Business metadata.

*/ inline UpdateUserRequestItem& WithAlexaForBusinessMetadata(AlexaForBusinessMetadata&& value) { SetAlexaForBusinessMetadata(std::move(value)); return *this;} private: Aws::String m_userId; bool m_userIdHasBeenSet = false; License m_licenseType; bool m_licenseTypeHasBeenSet = false; UserType m_userType; bool m_userTypeHasBeenSet = false; AlexaForBusinessMetadata m_alexaForBusinessMetadata; bool m_alexaForBusinessMetadataHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws