pub fn ser_context_move(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::ContextMove,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
#[allow(unused_mut)]
let mut object_1 = object.key("context").start_object();
for (key_2, value_3) in &input.context {
{
object_1.key(key_2.as_str()).document(value_3);
}
}
object_1.finish();
}
if let Some(var_4) = &input.description {
object.key("description").string(var_4.as_str());
}
{
object.key("change_reason").string(input.change_reason.as_str());
}
Ok(())
}