/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::LocationService::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws::Http; GetMapGlyphsRequest::GetMapGlyphsRequest() : m_fontStackHasBeenSet(false), m_fontUnicodeRangeHasBeenSet(false), m_keyHasBeenSet(false), m_mapNameHasBeenSet(false) { } Aws::String GetMapGlyphsRequest::SerializePayload() const { return {}; } void GetMapGlyphsRequest::AddQueryStringParameters(URI& uri) const { Aws::StringStream ss; if(m_keyHasBeenSet) { ss << m_key; uri.AddQueryStringParameter("key", ss.str()); ss.str(""); } }