package WebService::Audioscrobbler::SimilarUser; use warnings; use strict; use CLASS; use base 'WebService::Audioscrobbler::User'; =head1 NAME WebService::Audioscrobbler::SimilarUser - An object-oriented interface to the Audioscrobbler WebService API =cut our $VERSION = '0.07'; # object accessors CLASS->mk_accessors(qw/match related_to/); =head1 SYNOPSIS This is a subclass of L which implements some aditional fields that cover similarity aspects between two users. use WebService::Audioscrobbler; my $user = WebService::Audiocrobbler->user('Foo'); for my $neighbour ($user->neighbours) { print $neighbour->name . ": " . $neighbour->match . "\% similar\n"; } =head1 FIELDS =head2 C The related user from which this C object has been constructed from. =head2 C The similarity index between this user and the related user. It's returned as a number between 0 (not similar) and 100 (very similar). =cut =head1 AUTHOR Nilson Santos Figueiredo Júnior, C<< >> =head1 COPYRIGHT & LICENSE Copyright 2006-2007 Nilson Santos Figueiredo Júnior, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1; # End of WebService::Audioscrobbler::SimilarUser