summaryrefslogtreecommitdiffstats
path: root/lib/WWW/YNAB/CategoryGroup.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-06-23 19:59:49 -0400
committerJesse Luehrs <doy@tozt.net>2018-06-23 19:59:49 -0400
commit695895e26618cbfaa89183848cbeadd7ab9a0d5b (patch)
treed6ea2d037365c212b61581ff3734673f9e6a488f /lib/WWW/YNAB/CategoryGroup.pm
parent84b1fc5ec0a38eef8c82e7e403da2378b37095a6 (diff)
downloadwww-ynab-695895e26618cbfaa89183848cbeadd7ab9a0d5b.tar.gz
www-ynab-695895e26618cbfaa89183848cbeadd7ab9a0d5b.zip
initial implementation
Diffstat (limited to 'lib/WWW/YNAB/CategoryGroup.pm')
-rw-r--r--lib/WWW/YNAB/CategoryGroup.pm33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/WWW/YNAB/CategoryGroup.pm b/lib/WWW/YNAB/CategoryGroup.pm
new file mode 100644
index 0000000..d266a3e
--- /dev/null
+++ b/lib/WWW/YNAB/CategoryGroup.pm
@@ -0,0 +1,33 @@
+package WWW::YNAB::CategoryGroup;
+use Moose;
+
+has id => (
+ is => 'ro',
+ isa => 'Str',
+ required => 1,
+);
+
+has name => (
+ is => 'ro',
+ isa => 'Str',
+);
+
+has hidden => (
+ is => 'ro',
+ isa => 'Bool',
+);
+
+has deleted => (
+ is => 'ro',
+ isa => 'Bool',
+);
+
+has categories => (
+ is => 'ro',
+ isa => 'ArrayRef[WWW::YNAB::Category]',
+);
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+1;