$product->product_type

PHP
//The product_type property is deprecated. Use get_type() to get internal type.

//So you need to change this:

$product->product_type;

//to this:

$product->get_type();
Source

Also in PHP: