bless { hash => {} }, $class; ... $object->{hash}->{key_inside_that}; #### $object->{hash}{key_inside_that}, $$object{hash}{key_inside_that}, ${${$object}{hash}}{key_inside_that} #### bless \{ hash => \{} }, $class; ... ${$$object->{hash}}->{key_inside_that}; ${${${$object}}{hash}}{key_inside_that}; # etcetera...