pub fn ser_accept_match_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::accept_match::AcceptMatchInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.ticket_id {
encoder.str("TicketId").str(var_1.as_str());
}
if let Some(var_2) = &input.player_ids {
encoder.str("PlayerIds");
encoder.array((*var_2).len());
for item_3 in var_2 {
{
encoder.str(item_3.as_str());
}
}
}
if let Some(var_4) = &input.acceptance_type {
encoder.str("AcceptanceType").str(var_4.as_str());
}
encoder.end();
Ok(())
}