/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to retrieve the results of a predictive inbox placement
* test.See Also:
AWS
* API Reference
A unique string that identifies the predictive inbox placement test.
*/ inline const Aws::String& GetReportId() const{ return m_reportId; } /** *A unique string that identifies the predictive inbox placement test.
*/ inline bool ReportIdHasBeenSet() const { return m_reportIdHasBeenSet; } /** *A unique string that identifies the predictive inbox placement test.
*/ inline void SetReportId(const Aws::String& value) { m_reportIdHasBeenSet = true; m_reportId = value; } /** *A unique string that identifies the predictive inbox placement test.
*/ inline void SetReportId(Aws::String&& value) { m_reportIdHasBeenSet = true; m_reportId = std::move(value); } /** *A unique string that identifies the predictive inbox placement test.
*/ inline void SetReportId(const char* value) { m_reportIdHasBeenSet = true; m_reportId.assign(value); } /** *A unique string that identifies the predictive inbox placement test.
*/ inline GetDeliverabilityTestReportRequest& WithReportId(const Aws::String& value) { SetReportId(value); return *this;} /** *A unique string that identifies the predictive inbox placement test.
*/ inline GetDeliverabilityTestReportRequest& WithReportId(Aws::String&& value) { SetReportId(std::move(value)); return *this;} /** *A unique string that identifies the predictive inbox placement test.
*/ inline GetDeliverabilityTestReportRequest& WithReportId(const char* value) { SetReportId(value); return *this;} private: Aws::String m_reportId; bool m_reportIdHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws