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