/** * 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 DeviceFarm { namespace Model { Upload::Upload() : m_arnHasBeenSet(false), m_nameHasBeenSet(false), m_createdHasBeenSet(false), m_type(UploadType::NOT_SET), m_typeHasBeenSet(false), m_status(UploadStatus::NOT_SET), m_statusHasBeenSet(false), m_urlHasBeenSet(false), m_metadataHasBeenSet(false), m_contentTypeHasBeenSet(false), m_messageHasBeenSet(false), m_category(UploadCategory::NOT_SET), m_categoryHasBeenSet(false) { } Upload::Upload(JsonView jsonValue) : m_arnHasBeenSet(false), m_nameHasBeenSet(false), m_createdHasBeenSet(false), m_type(UploadType::NOT_SET), m_typeHasBeenSet(false), m_status(UploadStatus::NOT_SET), m_statusHasBeenSet(false), m_urlHasBeenSet(false), m_metadataHasBeenSet(false), m_contentTypeHasBeenSet(false), m_messageHasBeenSet(false), m_category(UploadCategory::NOT_SET), m_categoryHasBeenSet(false) { *this = jsonValue; } Upload& Upload::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("arn")) { m_arn = jsonValue.GetString("arn"); m_arnHasBeenSet = true; } if(jsonValue.ValueExists("name")) { m_name = jsonValue.GetString("name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("created")) { m_created = jsonValue.GetDouble("created"); m_createdHasBeenSet = true; } if(jsonValue.ValueExists("type")) { m_type = UploadTypeMapper::GetUploadTypeForName(jsonValue.GetString("type")); m_typeHasBeenSet = true; } if(jsonValue.ValueExists("status")) { m_status = UploadStatusMapper::GetUploadStatusForName(jsonValue.GetString("status")); m_statusHasBeenSet = true; } if(jsonValue.ValueExists("url")) { m_url = jsonValue.GetString("url"); m_urlHasBeenSet = true; } if(jsonValue.ValueExists("metadata")) { m_metadata = jsonValue.GetString("metadata"); m_metadataHasBeenSet = true; } if(jsonValue.ValueExists("contentType")) { m_contentType = jsonValue.GetString("contentType"); m_contentTypeHasBeenSet = true; } if(jsonValue.ValueExists("message")) { m_message = jsonValue.GetString("message"); m_messageHasBeenSet = true; } if(jsonValue.ValueExists("category")) { m_category = UploadCategoryMapper::GetUploadCategoryForName(jsonValue.GetString("category")); m_categoryHasBeenSet = true; } return *this; } JsonValue Upload::Jsonize() const { JsonValue payload; if(m_arnHasBeenSet) { payload.WithString("arn", m_arn); } if(m_nameHasBeenSet) { payload.WithString("name", m_name); } if(m_createdHasBeenSet) { payload.WithDouble("created", m_created.SecondsWithMSPrecision()); } if(m_typeHasBeenSet) { payload.WithString("type", UploadTypeMapper::GetNameForUploadType(m_type)); } if(m_statusHasBeenSet) { payload.WithString("status", UploadStatusMapper::GetNameForUploadStatus(m_status)); } if(m_urlHasBeenSet) { payload.WithString("url", m_url); } if(m_metadataHasBeenSet) { payload.WithString("metadata", m_metadata); } if(m_contentTypeHasBeenSet) { payload.WithString("contentType", m_contentType); } if(m_messageHasBeenSet) { payload.WithString("message", m_message); } if(m_categoryHasBeenSet) { payload.WithString("category", UploadCategoryMapper::GetNameForUploadCategory(m_category)); } return payload; } } // namespace Model } // namespace DeviceFarm } // namespace Aws