// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_order_by(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::types::OrderBy,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.dimension {
encoder.str("dimension").str(var_1.as_str());
}
if let Some(var_2) = &input.order {
encoder.str("order").str(var_2.as_str());
}
encoder.end();
Ok(())
}