63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/gamelift/model/StartMatchmakingRequest.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::GameLift::Model;
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
StartMatchmakingRequest::StartMatchmakingRequest() :
|
|||
|
|
m_ticketIdHasBeenSet(false),
|
|||
|
|
m_configurationNameHasBeenSet(false),
|
|||
|
|
m_playersHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String StartMatchmakingRequest::SerializePayload() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_ticketIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("TicketId", m_ticketId);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_configurationNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("ConfigurationName", m_configurationName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_playersHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> playersJsonList(m_players.size());
|
|||
|
|
for(unsigned playersIndex = 0; playersIndex < playersJsonList.GetLength(); ++playersIndex)
|
|||
|
|
{
|
|||
|
|
playersJsonList[playersIndex].AsObject(m_players[playersIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("Players", std::move(playersJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload.View().WriteReadable();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection StartMatchmakingRequest::GetRequestSpecificHeaders() const
|
|||
|
|
{
|
|||
|
|
Aws::Http::HeaderValueCollection headers;
|
|||
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "GameLift.StartMatchmaking"));
|
|||
|
|
return headers;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|