The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::LiveJournal::Friend - LiveJournal friend class

VERSION

version 0.07

SYNOPSIS

 use WebService::LiveJournal;
 my $client = WebService::LiveJournal->new(
   username => $user,
   password => $pass,
 );
 
 # get the list of your friends
 foreach my $friend (@{ $client->get_friend })
 {
   # $friend isa WS::LJ::Friend
   ...
 }
 
 # get the list of your stalkers, er... I mean people who have you as a friend:
 foreach my $friend (@{ $client->get_friend_of })
 {
   # $friend isa WS::LJ::Friend
   ...
 }

DESCRIPTION

This class represents a friend or user on the LiveJournal server.

ATTRIBUTES

username

The name of the user

fullname

The full name (First Last) of the user

bgcolor

The background color for the user

fgcolor

The foreground color for the user

type

The type of user

mask

The group mask of the user

SEE ALSO

WebService::LiveJournal,

AUTHOR

Graham Ollis <plicease@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.