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-devicefarm/source/model/Counters.cpp

164 lines
2.7 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/devicefarm/model/Counters.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace DeviceFarm
{
namespace Model
{
Counters::Counters() :
m_total(0),
m_totalHasBeenSet(false),
m_passed(0),
m_passedHasBeenSet(false),
m_failed(0),
m_failedHasBeenSet(false),
m_warned(0),
m_warnedHasBeenSet(false),
m_errored(0),
m_erroredHasBeenSet(false),
m_stopped(0),
m_stoppedHasBeenSet(false),
m_skipped(0),
m_skippedHasBeenSet(false)
{
}
Counters::Counters(JsonView jsonValue) :
m_total(0),
m_totalHasBeenSet(false),
m_passed(0),
m_passedHasBeenSet(false),
m_failed(0),
m_failedHasBeenSet(false),
m_warned(0),
m_warnedHasBeenSet(false),
m_errored(0),
m_erroredHasBeenSet(false),
m_stopped(0),
m_stoppedHasBeenSet(false),
m_skipped(0),
m_skippedHasBeenSet(false)
{
*this = jsonValue;
}
Counters& Counters::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("total"))
{
m_total = jsonValue.GetInteger("total");
m_totalHasBeenSet = true;
}
if(jsonValue.ValueExists("passed"))
{
m_passed = jsonValue.GetInteger("passed");
m_passedHasBeenSet = true;
}
if(jsonValue.ValueExists("failed"))
{
m_failed = jsonValue.GetInteger("failed");
m_failedHasBeenSet = true;
}
if(jsonValue.ValueExists("warned"))
{
m_warned = jsonValue.GetInteger("warned");
m_warnedHasBeenSet = true;
}
if(jsonValue.ValueExists("errored"))
{
m_errored = jsonValue.GetInteger("errored");
m_erroredHasBeenSet = true;
}
if(jsonValue.ValueExists("stopped"))
{
m_stopped = jsonValue.GetInteger("stopped");
m_stoppedHasBeenSet = true;
}
if(jsonValue.ValueExists("skipped"))
{
m_skipped = jsonValue.GetInteger("skipped");
m_skippedHasBeenSet = true;
}
return *this;
}
JsonValue Counters::Jsonize() const
{
JsonValue payload;
if(m_totalHasBeenSet)
{
payload.WithInteger("total", m_total);
}
if(m_passedHasBeenSet)
{
payload.WithInteger("passed", m_passed);
}
if(m_failedHasBeenSet)
{
payload.WithInteger("failed", m_failed);
}
if(m_warnedHasBeenSet)
{
payload.WithInteger("warned", m_warned);
}
if(m_erroredHasBeenSet)
{
payload.WithInteger("errored", m_errored);
}
if(m_stoppedHasBeenSet)
{
payload.WithInteger("stopped", m_stopped);
}
if(m_skippedHasBeenSet)
{
payload.WithInteger("skipped", m_skipped);
}
return payload;
}
} // namespace Model
} // namespace DeviceFarm
} // namespace Aws