/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The content range of the report.See Also:
AWS
* API Reference
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