This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-pinpoint/source/model/QuietTime.cpp

75 lines
1.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/pinpoint/model/QuietTime.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Pinpoint
{
namespace Model
{
QuietTime::QuietTime() :
m_endHasBeenSet(false),
m_startHasBeenSet(false)
{
}
QuietTime::QuietTime(JsonView jsonValue) :
m_endHasBeenSet(false),
m_startHasBeenSet(false)
{
*this = jsonValue;
}
QuietTime& QuietTime::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("End"))
{
m_end = jsonValue.GetString("End");
m_endHasBeenSet = true;
}
if(jsonValue.ValueExists("Start"))
{
m_start = jsonValue.GetString("Start");
m_startHasBeenSet = true;
}
return *this;
}
JsonValue QuietTime::Jsonize() const
{
JsonValue payload;
if(m_endHasBeenSet)
{
payload.WithString("End", m_end);
}
if(m_startHasBeenSet)
{
payload.WithString("Start", m_start);
}
return payload;
}
} // namespace Model
} // namespace Pinpoint
} // namespace Aws