my $JSON;
$JSON->{message}->{text} = '111';
my $type;
$JSON->{message}->{text} ne '' ? $type = 'text' : $type = 'photo';
print $type; # выводит photo
if($JSON->{message}->{text} ne '' ) { $type = 'text'; } else { $type = 'photo';}
print $type; # выводит text