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

A smart home appliance that can connect to a central system. Any domestic * device can be a smart appliance.

See Also:

AWS * API Reference

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

The friendly name of the smart home appliance.

*/ inline const Aws::String& GetFriendlyName() const{ return m_friendlyName; } /** *

The friendly name of the smart home appliance.

*/ inline bool FriendlyNameHasBeenSet() const { return m_friendlyNameHasBeenSet; } /** *

The friendly name of the smart home appliance.

*/ inline void SetFriendlyName(const Aws::String& value) { m_friendlyNameHasBeenSet = true; m_friendlyName = value; } /** *

The friendly name of the smart home appliance.

*/ inline void SetFriendlyName(Aws::String&& value) { m_friendlyNameHasBeenSet = true; m_friendlyName = std::move(value); } /** *

The friendly name of the smart home appliance.

*/ inline void SetFriendlyName(const char* value) { m_friendlyNameHasBeenSet = true; m_friendlyName.assign(value); } /** *

The friendly name of the smart home appliance.

*/ inline SmartHomeAppliance& WithFriendlyName(const Aws::String& value) { SetFriendlyName(value); return *this;} /** *

The friendly name of the smart home appliance.

*/ inline SmartHomeAppliance& WithFriendlyName(Aws::String&& value) { SetFriendlyName(std::move(value)); return *this;} /** *

The friendly name of the smart home appliance.

*/ inline SmartHomeAppliance& WithFriendlyName(const char* value) { SetFriendlyName(value); return *this;} /** *

The description of the smart home appliance.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of the smart home appliance.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of the smart home appliance.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of the smart home appliance.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of the smart home appliance.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of the smart home appliance.

*/ inline SmartHomeAppliance& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of the smart home appliance.

*/ inline SmartHomeAppliance& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of the smart home appliance.

*/ inline SmartHomeAppliance& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The name of the manufacturer of the smart home appliance.

*/ inline const Aws::String& GetManufacturerName() const{ return m_manufacturerName; } /** *

The name of the manufacturer of the smart home appliance.

*/ inline bool ManufacturerNameHasBeenSet() const { return m_manufacturerNameHasBeenSet; } /** *

The name of the manufacturer of the smart home appliance.

*/ inline void SetManufacturerName(const Aws::String& value) { m_manufacturerNameHasBeenSet = true; m_manufacturerName = value; } /** *

The name of the manufacturer of the smart home appliance.

*/ inline void SetManufacturerName(Aws::String&& value) { m_manufacturerNameHasBeenSet = true; m_manufacturerName = std::move(value); } /** *

The name of the manufacturer of the smart home appliance.

*/ inline void SetManufacturerName(const char* value) { m_manufacturerNameHasBeenSet = true; m_manufacturerName.assign(value); } /** *

The name of the manufacturer of the smart home appliance.

*/ inline SmartHomeAppliance& WithManufacturerName(const Aws::String& value) { SetManufacturerName(value); return *this;} /** *

The name of the manufacturer of the smart home appliance.

*/ inline SmartHomeAppliance& WithManufacturerName(Aws::String&& value) { SetManufacturerName(std::move(value)); return *this;} /** *

The name of the manufacturer of the smart home appliance.

*/ inline SmartHomeAppliance& WithManufacturerName(const char* value) { SetManufacturerName(value); return *this;} private: Aws::String m_friendlyName; bool m_friendlyNameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_manufacturerName; bool m_manufacturerNameHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws