/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace Pinpoint { namespace Model { PushNotificationTemplateRequest::PushNotificationTemplateRequest() : m_aDMHasBeenSet(false), m_aPNSHasBeenSet(false), m_baiduHasBeenSet(false), m_defaultHasBeenSet(false), m_defaultSubstitutionsHasBeenSet(false), m_gCMHasBeenSet(false), m_recommenderIdHasBeenSet(false), m_tagsHasBeenSet(false), m_templateDescriptionHasBeenSet(false) { } PushNotificationTemplateRequest::PushNotificationTemplateRequest(JsonView jsonValue) : m_aDMHasBeenSet(false), m_aPNSHasBeenSet(false), m_baiduHasBeenSet(false), m_defaultHasBeenSet(false), m_defaultSubstitutionsHasBeenSet(false), m_gCMHasBeenSet(false), m_recommenderIdHasBeenSet(false), m_tagsHasBeenSet(false), m_templateDescriptionHasBeenSet(false) { *this = jsonValue; } PushNotificationTemplateRequest& PushNotificationTemplateRequest::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("ADM")) { m_aDM = jsonValue.GetObject("ADM"); m_aDMHasBeenSet = true; } if(jsonValue.ValueExists("APNS")) { m_aPNS = jsonValue.GetObject("APNS"); m_aPNSHasBeenSet = true; } if(jsonValue.ValueExists("Baidu")) { m_baidu = jsonValue.GetObject("Baidu"); m_baiduHasBeenSet = true; } if(jsonValue.ValueExists("Default")) { m_default = jsonValue.GetObject("Default"); m_defaultHasBeenSet = true; } if(jsonValue.ValueExists("DefaultSubstitutions")) { m_defaultSubstitutions = jsonValue.GetString("DefaultSubstitutions"); m_defaultSubstitutionsHasBeenSet = true; } if(jsonValue.ValueExists("GCM")) { m_gCM = jsonValue.GetObject("GCM"); m_gCMHasBeenSet = true; } if(jsonValue.ValueExists("RecommenderId")) { m_recommenderId = jsonValue.GetString("RecommenderId"); m_recommenderIdHasBeenSet = true; } if(jsonValue.ValueExists("tags")) { Aws::Map tagsJsonMap = jsonValue.GetObject("tags").GetAllObjects(); for(auto& tagsItem : tagsJsonMap) { m_tags[tagsItem.first] = tagsItem.second.AsString(); } m_tagsHasBeenSet = true; } if(jsonValue.ValueExists("TemplateDescription")) { m_templateDescription = jsonValue.GetString("TemplateDescription"); m_templateDescriptionHasBeenSet = true; } return *this; } JsonValue PushNotificationTemplateRequest::Jsonize() const { JsonValue payload; if(m_aDMHasBeenSet) { payload.WithObject("ADM", m_aDM.Jsonize()); } if(m_aPNSHasBeenSet) { payload.WithObject("APNS", m_aPNS.Jsonize()); } if(m_baiduHasBeenSet) { payload.WithObject("Baidu", m_baidu.Jsonize()); } if(m_defaultHasBeenSet) { payload.WithObject("Default", m_default.Jsonize()); } if(m_defaultSubstitutionsHasBeenSet) { payload.WithString("DefaultSubstitutions", m_defaultSubstitutions); } if(m_gCMHasBeenSet) { payload.WithObject("GCM", m_gCM.Jsonize()); } if(m_recommenderIdHasBeenSet) { payload.WithString("RecommenderId", m_recommenderId); } if(m_tagsHasBeenSet) { JsonValue tagsJsonMap; for(auto& tagsItem : m_tags) { tagsJsonMap.WithString(tagsItem.first, tagsItem.second); } payload.WithObject("tags", std::move(tagsJsonMap)); } if(m_templateDescriptionHasBeenSet) { payload.WithString("TemplateDescription", m_templateDescription); } return payload; } } // namespace Model } // namespace Pinpoint } // namespace Aws