/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the result of a get device request.See Also:
AWS
* API Reference
An object that contains information about the requested device.
*/ inline const Device& GetDevice() const{ return m_device; } /** *An object that contains information about the requested device.
*/ inline void SetDevice(const Device& value) { m_device = value; } /** *An object that contains information about the requested device.
*/ inline void SetDevice(Device&& value) { m_device = std::move(value); } /** *An object that contains information about the requested device.
*/ inline GetDeviceResult& WithDevice(const Device& value) { SetDevice(value); return *this;} /** *An object that contains information about the requested device.
*/ inline GetDeviceResult& WithDevice(Device&& value) { SetDevice(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetDeviceResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDeviceResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDeviceResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Device m_device; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws