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

The content range of the report.

See Also:

AWS * API Reference

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

The interval of the content range.

*/ inline const BusinessReportInterval& GetInterval() const{ return m_interval; } /** *

The interval of the content range.

*/ inline bool IntervalHasBeenSet() const { return m_intervalHasBeenSet; } /** *

The interval of the content range.

*/ inline void SetInterval(const BusinessReportInterval& value) { m_intervalHasBeenSet = true; m_interval = value; } /** *

The interval of the content range.

*/ inline void SetInterval(BusinessReportInterval&& value) { m_intervalHasBeenSet = true; m_interval = std::move(value); } /** *

The interval of the content range.

*/ inline BusinessReportContentRange& WithInterval(const BusinessReportInterval& value) { SetInterval(value); return *this;} /** *

The interval of the content range.

*/ inline BusinessReportContentRange& WithInterval(BusinessReportInterval&& value) { SetInterval(std::move(value)); return *this;} private: BusinessReportInterval m_interval; bool m_intervalHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws