use User::Identity; use User::Identity::Location; my $me = User::Identity->new(...); my $addr = User::Identity::Location->new(...); $me->add(location => $addr); # Simpler use User::Identity; my $me = User::Identity->new(...); my $addr = $me->add(location => ...);
The User::Identity::Location
object contains the description of a physical
location of a person: home, work, travel. The locations are collected
by a User::Identity::Collection::Locations object.
Nearly all methods can return undef
. Some methods produce language or
country specific output.
See DESCRIPTION in User::Identity::Item