/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace LookoutEquipment { namespace Model { /** *

Entity that comprises information abount duplicate timestamps in the * dataset.

See Also:

AWS * API Reference

*/ class DuplicateTimestamps { public: AWS_LOOKOUTEQUIPMENT_API DuplicateTimestamps(); AWS_LOOKOUTEQUIPMENT_API DuplicateTimestamps(Aws::Utils::Json::JsonView jsonValue); AWS_LOOKOUTEQUIPMENT_API DuplicateTimestamps& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_LOOKOUTEQUIPMENT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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