Thanks for your input again John. You are correct in that it included the details XML tag. However I have now managed to get it work with the following:
$post_content = $xml->Details->asXML();
$post_content = str_replace( '<Details>', '', $post_content);
$post_content = str_replace( '</Details>', '', $post_content);
$wpbb_job_post_args = array(
'post_type' => 'wpbb_job',
'post_title' => wp_strip_all_tags( $xml->Title ),
'post_content' => $post_content,
'post_status' => 'publish'
);
I wonder though if there is a more elegant way?