/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::AlexaForBusiness::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DisassociateSkillGroupFromRoomRequest::DisassociateSkillGroupFromRoomRequest() : m_skillGroupArnHasBeenSet(false), m_roomArnHasBeenSet(false) { } Aws::String DisassociateSkillGroupFromRoomRequest::SerializePayload() const { JsonValue payload; if(m_skillGroupArnHasBeenSet) { payload.WithString("SkillGroupArn", m_skillGroupArn); } if(m_roomArnHasBeenSet) { payload.WithString("RoomArn", m_roomArn); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection DisassociateSkillGroupFromRoomRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AlexaForBusiness.DisassociateSkillGroupFromRoom")); return headers; }