// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_lte_local_id(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::LteLocalId,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
object.key("Earfcn").number(
#[allow(clippy::useless_conversion)]
::aws_smithy_types::Number::NegInt((input.earfcn).into()),
);
}
{
object.key("Pci").number(
#[allow(clippy::useless_conversion)]
::aws_smithy_types::Number::NegInt((input.pci).into()),
);
}
Ok(())
}