/** * 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 TranscribeStreamingService { namespace Model { Entity::Entity() : m_startTime(0.0), m_startTimeHasBeenSet(false), m_endTime(0.0), m_endTimeHasBeenSet(false), m_categoryHasBeenSet(false), m_typeHasBeenSet(false), m_contentHasBeenSet(false), m_confidence(0.0), m_confidenceHasBeenSet(false) { } Entity::Entity(JsonView jsonValue) : m_startTime(0.0), m_startTimeHasBeenSet(false), m_endTime(0.0), m_endTimeHasBeenSet(false), m_categoryHasBeenSet(false), m_typeHasBeenSet(false), m_contentHasBeenSet(false), m_confidence(0.0), m_confidenceHasBeenSet(false) { *this = jsonValue; } Entity& Entity::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("StartTime")) { m_startTime = jsonValue.GetDouble("StartTime"); m_startTimeHasBeenSet = true; } if(jsonValue.ValueExists("EndTime")) { m_endTime = jsonValue.GetDouble("EndTime"); m_endTimeHasBeenSet = true; } if(jsonValue.ValueExists("Category")) { m_category = jsonValue.GetString("Category"); m_categoryHasBeenSet = true; } if(jsonValue.ValueExists("Type")) { m_type = jsonValue.GetString("Type"); m_typeHasBeenSet = true; } if(jsonValue.ValueExists("Content")) { m_content = jsonValue.GetString("Content"); m_contentHasBeenSet = true; } if(jsonValue.ValueExists("Confidence")) { m_confidence = jsonValue.GetDouble("Confidence"); m_confidenceHasBeenSet = true; } return *this; } JsonValue Entity::Jsonize() const { JsonValue payload; if(m_startTimeHasBeenSet) { payload.WithDouble("StartTime", m_startTime); } if(m_endTimeHasBeenSet) { payload.WithDouble("EndTime", m_endTime); } if(m_categoryHasBeenSet) { payload.WithString("Category", m_category); } if(m_typeHasBeenSet) { payload.WithString("Type", m_type); } if(m_contentHasBeenSet) { payload.WithString("Content", m_content); } if(m_confidenceHasBeenSet) { payload.WithDouble("Confidence", m_confidence); } return payload; } } // namespace Model } // namespace TranscribeStreamingService } // namespace Aws