/** * 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 Omics { namespace Model { ExportReadSet::ExportReadSet() : m_readSetIdHasBeenSet(false) { } ExportReadSet::ExportReadSet(JsonView jsonValue) : m_readSetIdHasBeenSet(false) { *this = jsonValue; } ExportReadSet& ExportReadSet::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("readSetId")) { m_readSetId = jsonValue.GetString("readSetId"); m_readSetIdHasBeenSet = true; } return *this; } JsonValue ExportReadSet::Jsonize() const { JsonValue payload; if(m_readSetIdHasBeenSet) { payload.WithString("readSetId", m_readSetId); } return payload; } } // namespace Model } // namespace Omics } // namespace Aws