// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_import_tr31_key_block(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::ImportTr31KeyBlock,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
object.key("WrappingKeyIdentifier").string(input.wrapping_key_identifier.as_str());
}
{
object.key("WrappedKeyBlock").string(input.wrapped_key_block.as_str());
}
Ok(())
}