/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. * * This file is generated */ #include namespace Aws { namespace Iotidentity { void RegisterThingResponse::LoadFromObject(RegisterThingResponse &val, const Aws::Crt::JsonView &doc) { (void)val; (void)doc; if (doc.ValueExists("thingName")) { val.ThingName = doc.GetString("thingName"); } if (doc.ValueExists("deviceConfiguration")) { auto deviceConfigurationMap = doc.GetJsonObject("deviceConfiguration"); val.DeviceConfiguration = Aws::Crt::Map(); for (auto &deviceConfigurationMapMember : deviceConfigurationMap.GetAllObjects()) { Aws::Crt::String deviceConfigurationMapValMember; deviceConfigurationMapValMember = deviceConfigurationMapMember.second.AsString(); val.DeviceConfiguration->emplace( deviceConfigurationMapMember.first, std::move(deviceConfigurationMapValMember)); } } } void RegisterThingResponse::SerializeToObject(Aws::Crt::JsonObject &object) const { (void)object; if (ThingName) { object.WithString("thingName", *ThingName); } if (DeviceConfiguration) { Aws::Crt::JsonObject deviceConfigurationMap; for (auto &deviceConfigurationMapMember : *DeviceConfiguration) { Aws::Crt::JsonObject deviceConfigurationMapValMember; deviceConfigurationMapValMember.AsString(deviceConfigurationMapMember.second); deviceConfigurationMap.WithObject( deviceConfigurationMapMember.first, std::move(deviceConfigurationMapValMember)); } object.WithObject("deviceConfiguration", std::move(deviceConfigurationMap)); } } RegisterThingResponse::RegisterThingResponse(const Crt::JsonView &doc) { LoadFromObject(*this, doc); } RegisterThingResponse &RegisterThingResponse::operator=(const Crt::JsonView &doc) { *this = RegisterThingResponse(doc); return *this; } } // namespace Iotidentity } // namespace Aws