/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Entity that comprises information abount unsupported timestamps in the
* dataset. See Also:
AWS
* API Reference
Indicates the total number of unsupported timestamps across the ingested * data.
*/ inline int GetTotalNumberOfUnsupportedTimestamps() const{ return m_totalNumberOfUnsupportedTimestamps; } /** *Indicates the total number of unsupported timestamps across the ingested * data.
*/ inline bool TotalNumberOfUnsupportedTimestampsHasBeenSet() const { return m_totalNumberOfUnsupportedTimestampsHasBeenSet; } /** *Indicates the total number of unsupported timestamps across the ingested * data.
*/ inline void SetTotalNumberOfUnsupportedTimestamps(int value) { m_totalNumberOfUnsupportedTimestampsHasBeenSet = true; m_totalNumberOfUnsupportedTimestamps = value; } /** *Indicates the total number of unsupported timestamps across the ingested * data.
*/ inline UnsupportedTimestamps& WithTotalNumberOfUnsupportedTimestamps(int value) { SetTotalNumberOfUnsupportedTimestamps(value); return *this;} private: int m_totalNumberOfUnsupportedTimestamps; bool m_totalNumberOfUnsupportedTimestampsHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws