/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The log options for wireless devices and can be used to set log levels for a
* specific type of wireless device.See Also:
AWS
* API Reference
The wireless device type.
*/ inline const WirelessDeviceType& GetType() const{ return m_type; } /** *The wireless device type.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The wireless device type.
*/ inline void SetType(const WirelessDeviceType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The wireless device type.
*/ inline void SetType(WirelessDeviceType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The wireless device type.
*/ inline WirelessDeviceLogOption& WithType(const WirelessDeviceType& value) { SetType(value); return *this;} /** *The wireless device type.
*/ inline WirelessDeviceLogOption& WithType(WirelessDeviceType&& value) { SetType(std::move(value)); return *this;} inline const LogLevel& GetLogLevel() const{ return m_logLevel; } inline bool LogLevelHasBeenSet() const { return m_logLevelHasBeenSet; } inline void SetLogLevel(const LogLevel& value) { m_logLevelHasBeenSet = true; m_logLevel = value; } inline void SetLogLevel(LogLevel&& value) { m_logLevelHasBeenSet = true; m_logLevel = std::move(value); } inline WirelessDeviceLogOption& WithLogLevel(const LogLevel& value) { SetLogLevel(value); return *this;} inline WirelessDeviceLogOption& WithLogLevel(LogLevel&& value) { SetLogLevel(std::move(value)); return *this;} inline const Aws::Vector