Trying to include files in plugin isn’t working

try this

include(plugins_url( 'types.php' , __FILE__ ));

or

$p_url=plugins_url();
$types_url=$url.'/your-plugin-name/types.php';
include($types_url);

Note:
don’t forgot about path if have that file in a sub folder like inc or js,assets. Mention them