// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_persistent_chat(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::PersistentChat,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.rehydration_type {
object.key("RehydrationType").string(var_1.as_str());
}
if let Some(var_2) = &input.source_contact_id {
object.key("SourceContactId").string(var_2.as_str());
}
Ok(())
}