/** * 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 { OfferingPromotion::OfferingPromotion() : m_idHasBeenSet(false), m_descriptionHasBeenSet(false) { } OfferingPromotion::OfferingPromotion(JsonView jsonValue) : m_idHasBeenSet(false), m_descriptionHasBeenSet(false) { *this = jsonValue; } OfferingPromotion& OfferingPromotion::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("id")) { m_id = jsonValue.GetString("id"); m_idHasBeenSet = true; } if(jsonValue.ValueExists("description")) { m_description = jsonValue.GetString("description"); m_descriptionHasBeenSet = true; } return *this; } JsonValue OfferingPromotion::Jsonize() const { JsonValue payload; if(m_idHasBeenSet) { payload.WithString("id", m_id); } if(m_descriptionHasBeenSet) { payload.WithString("description", m_description); } return payload; } } // namespace Model } // namespace DeviceFarm } // namespace Aws