- (NSString *)accountStatus;
- (NSString *)accountType;
This property is blank if the receiver represents a regular user account. If the receiver is a community, this will return the string "community".
- (NSColor *)backgroundColor;
Result: The color this friend uses for your background.- (NSColor *)backgroundColorForYou;
- (NSCalendarDate *)birthDate;
- (NSColor *)foregroundColor;
Result: The color this friend uses for your foreground.- (NSColor *)foregroundColorForYou;
- (int)friendship;
Returns the direction of friendship with this user. If you list the receiver as a friend, the friendship is outgoing. If the receiver lists you as a friend, the friendship is incoming. If both cases are true, the friendship is mutual. The result is one of the Friendship constants defined in the LJFriend header.
- (NSString *)fullname;
Returns the receiver's full name, as reported by the server. If not available, this method returns the receiver's username.
- (NSDate *)modifiedDate;
This is the date that the receiver was most recently changed in some way. If this date is later than the last time the account's friends have been downloaded then its changes will be committed next time [LJAccount uploadFriends] is called.
- (NSURL *)recentEntriesHttpURL;
- (void)setBackgroundColor:(NSColor *)bgColor;
- (void)setForegroundColor:(NSColor *)fgColor;
- (NSURL *)userProfileHttpURL;
- (NSString *)username;
(Last Updated 2/17/2003)