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-securityhub/source/model/DateRange.cpp

78 lines
1.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/securityhub/model/DateRange.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace SecurityHub
{
namespace Model
{
DateRange::DateRange() :
m_value(0),
m_valueHasBeenSet(false),
m_unit(DateRangeUnit::NOT_SET),
m_unitHasBeenSet(false)
{
}
DateRange::DateRange(JsonView jsonValue) :
m_value(0),
m_valueHasBeenSet(false),
m_unit(DateRangeUnit::NOT_SET),
m_unitHasBeenSet(false)
{
*this = jsonValue;
}
DateRange& DateRange::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Value"))
{
m_value = jsonValue.GetInteger("Value");
m_valueHasBeenSet = true;
}
if(jsonValue.ValueExists("Unit"))
{
m_unit = DateRangeUnitMapper::GetDateRangeUnitForName(jsonValue.GetString("Unit"));
m_unitHasBeenSet = true;
}
return *this;
}
JsonValue DateRange::Jsonize() const
{
JsonValue payload;
if(m_valueHasBeenSet)
{
payload.WithInteger("Value", m_value);
}
if(m_unitHasBeenSet)
{
payload.WithString("Unit", DateRangeUnitMapper::GetNameForDateRangeUnit(m_unit));
}
return payload;
}
} // namespace Model
} // namespace SecurityHub
} // namespace Aws