/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about an import task created for an individual Sidewalk
* device.See Also:
AWS
* API Reference
The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline const Aws::String& GetSidewalkManufacturingSn() const{ return m_sidewalkManufacturingSn; } /** *The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline bool SidewalkManufacturingSnHasBeenSet() const { return m_sidewalkManufacturingSnHasBeenSet; } /** *The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline void SetSidewalkManufacturingSn(const Aws::String& value) { m_sidewalkManufacturingSnHasBeenSet = true; m_sidewalkManufacturingSn = value; } /** *The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline void SetSidewalkManufacturingSn(Aws::String&& value) { m_sidewalkManufacturingSnHasBeenSet = true; m_sidewalkManufacturingSn = std::move(value); } /** *The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline void SetSidewalkManufacturingSn(const char* value) { m_sidewalkManufacturingSnHasBeenSet = true; m_sidewalkManufacturingSn.assign(value); } /** *The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline SidewalkSingleStartImportInfo& WithSidewalkManufacturingSn(const Aws::String& value) { SetSidewalkManufacturingSn(value); return *this;} /** *The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline SidewalkSingleStartImportInfo& WithSidewalkManufacturingSn(Aws::String&& value) { SetSidewalkManufacturingSn(std::move(value)); return *this;} /** *The Sidewalk manufacturing serial number (SMSN) of the device added to the * import task.
*/ inline SidewalkSingleStartImportInfo& WithSidewalkManufacturingSn(const char* value) { SetSidewalkManufacturingSn(value); return *this;} private: Aws::String m_sidewalkManufacturingSn; bool m_sidewalkManufacturingSnHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws