/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Entity that comprises information abount duplicate timestamps in the
* dataset. See Also:
AWS
* API Reference
Indicates the total number of duplicate timestamps.
*/ inline int GetTotalNumberOfDuplicateTimestamps() const{ return m_totalNumberOfDuplicateTimestamps; } /** *Indicates the total number of duplicate timestamps.
*/ inline bool TotalNumberOfDuplicateTimestampsHasBeenSet() const { return m_totalNumberOfDuplicateTimestampsHasBeenSet; } /** *Indicates the total number of duplicate timestamps.
*/ inline void SetTotalNumberOfDuplicateTimestamps(int value) { m_totalNumberOfDuplicateTimestampsHasBeenSet = true; m_totalNumberOfDuplicateTimestamps = value; } /** *Indicates the total number of duplicate timestamps.
*/ inline DuplicateTimestamps& WithTotalNumberOfDuplicateTimestamps(int value) { SetTotalNumberOfDuplicateTimestamps(value); return *this;} private: int m_totalNumberOfDuplicateTimestamps; bool m_totalNumberOfDuplicateTimestampsHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws