/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::LicenseManagerUserSubscriptions::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateIdentityProviderSettingsRequest::UpdateIdentityProviderSettingsRequest() : m_identityProviderHasBeenSet(false), m_productHasBeenSet(false), m_updateSettingsHasBeenSet(false) { } Aws::String UpdateIdentityProviderSettingsRequest::SerializePayload() const { JsonValue payload; if(m_identityProviderHasBeenSet) { payload.WithObject("IdentityProvider", m_identityProvider.Jsonize()); } if(m_productHasBeenSet) { payload.WithString("Product", m_product); } if(m_updateSettingsHasBeenSet) { payload.WithObject("UpdateSettings", m_updateSettings.Jsonize()); } return payload.View().WriteReadable(); }