Skip to content

Commit

Permalink
seem has it
Browse files Browse the repository at this point in the history
  • Loading branch information
clsung committed May 28, 2011
1 parent 1a0e630 commit 78613be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Net/Plurk/User.pm
Expand Up @@ -18,13 +18,13 @@ has 'avatar' => (is => 'rw', isa => 'Maybe[Int]');
has 'relationship' => (is => 'rw', isa => 'Str');
has 'full_name' => (is => 'rw', isa => 'Str');
has 'nick_name' => (is => 'rw', isa => 'Str');
has 'display_name' => (is => 'rw', isa => 'Str', lazy_build => 1); # XXX
has 'display_name' => (is => 'rw', isa => 'Str', lazy_build => 1);
has 'location' => (is => 'rw', isa => 'Str');
has 'timezone' => (is => 'rw', isa => 'Any');
has 'date_of_birth' => (is => 'rw', isa => 'Maybe[Str]');
has 'karma' => (is => 'rw', isa => 'Num', default => 0);
has 'gender' => (is => 'rw', isa => 'Int');
has 'recruited' => (is => 'rw', isa => 'Int'); # XXX
has 'recruited' => (is => 'rw', isa => 'Int');
has 'is_premium' => (is => 'ro', isa => 'Maybe[Object]', default => 'JSON::false');
has 'email_confirmed' => (is => 'ro', isa => 'Maybe[Object]', default => 'JSON::false');

Expand Down

0 comments on commit 78613be

Please sign in to comment.