/** * 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 recurrence of the reports.

See Also:

AWS * API Reference

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

The start date.

*/ inline const Aws::String& GetStartDate() const{ return m_startDate; } /** *

The start date.

*/ inline bool StartDateHasBeenSet() const { return m_startDateHasBeenSet; } /** *

The start date.

*/ inline void SetStartDate(const Aws::String& value) { m_startDateHasBeenSet = true; m_startDate = value; } /** *

The start date.

*/ inline void SetStartDate(Aws::String&& value) { m_startDateHasBeenSet = true; m_startDate = std::move(value); } /** *

The start date.

*/ inline void SetStartDate(const char* value) { m_startDateHasBeenSet = true; m_startDate.assign(value); } /** *

The start date.

*/ inline BusinessReportRecurrence& WithStartDate(const Aws::String& value) { SetStartDate(value); return *this;} /** *

The start date.

*/ inline BusinessReportRecurrence& WithStartDate(Aws::String&& value) { SetStartDate(std::move(value)); return *this;} /** *

The start date.

*/ inline BusinessReportRecurrence& WithStartDate(const char* value) { SetStartDate(value); return *this;} private: Aws::String m_startDate; bool m_startDateHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws