summaryrefslogtreecommitdiffstats
path: root/lib/WWW/YNAB/User.pm
blob: 92dd09a3a557c33666e6e8a8c8acc12c8c2ebbfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package WWW::YNAB::User;

use Moose;
# ABSTRACT: User model object

=head1 SYNOPSIS

  use WWW::YNAB;

  my $ynab = WWW::YNAB->new(...);
  my $user = $ynab->user;

=head1 OVERVIEW

See L<https://api.youneedabudget.com/v1#/User> for more information.

=cut

=method id

=cut

has id => (
    is       => 'ro',
    isa      => 'Str',
    required => 1,
);

__PACKAGE__->meta->make_immutable;
no Moose;

1;