aws_sdk_supportapp/protocol_serde/
shape_delete_slack_channel_configuration_input.rspub fn ser_delete_slack_channel_configuration_input_input(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::operation::delete_slack_channel_configuration::DeleteSlackChannelConfigurationInput,
) -> Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    if let Some(var_1) = &input.channel_id {
        object.key("channelId").string(var_1.as_str());
    }
    if let Some(var_2) = &input.team_id {
        object.key("teamId").string(var_2.as_str());
    }
    Ok(())
}