/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Status
and TrackingNumber
information for an
* inbound or outbound shipment.See Also:
AWS
* API Reference
Status information for a shipment.
*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *Status information for a shipment.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *Status information for a shipment.
*/ inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; } /** *Status information for a shipment.
*/ inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *Status information for a shipment.
*/ inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); } /** *Status information for a shipment.
*/ inline Shipment& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *Status information for a shipment.
*/ inline Shipment& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *Status information for a shipment.
*/ inline Shipment& WithStatus(const char* value) { SetStatus(value); return *this;} /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline const Aws::String& GetTrackingNumber() const{ return m_trackingNumber; } /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline bool TrackingNumberHasBeenSet() const { return m_trackingNumberHasBeenSet; } /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline void SetTrackingNumber(const Aws::String& value) { m_trackingNumberHasBeenSet = true; m_trackingNumber = value; } /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline void SetTrackingNumber(Aws::String&& value) { m_trackingNumberHasBeenSet = true; m_trackingNumber = std::move(value); } /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline void SetTrackingNumber(const char* value) { m_trackingNumberHasBeenSet = true; m_trackingNumber.assign(value); } /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline Shipment& WithTrackingNumber(const Aws::String& value) { SetTrackingNumber(value); return *this;} /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline Shipment& WithTrackingNumber(Aws::String&& value) { SetTrackingNumber(std::move(value)); return *this;} /** *The tracking number for this job. Using this tracking number with your * region's carrier's website, you can track a Snow device as the carrier * transports it.
For India, the carrier is Amazon Logistics. For all other * regions, UPS is the carrier.
*/ inline Shipment& WithTrackingNumber(const char* value) { SetTrackingNumber(value); return *this;} private: Aws::String m_status; bool m_statusHasBeenSet = false; Aws::String m_trackingNumber; bool m_trackingNumberHasBeenSet = false; }; } // namespace Model } // namespace Snowball } // namespace Aws