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