ngs;
use MooseX::Method::Signatures;
use Moose;
use WebService::Beeminder::Types qw(BeeBool);
use JSON::Any;
use LWP::UserAgent;
use Carp qw(croak);
our $VERSION = '0.002'; # VERSION: Generated by DZ
ult => 'https://www.beeminder.com/api/v1');
# Everything needs to be able to read/write JSON.
my $json = JSON::Any->new;
sub BUILD {
my ($self) = @_;
# Make sure we have a user-agent, if n
,"$user.json"]);
}
# Gets the datapoints for a goal
# DONE: 2011-11-25. This takes no parameters.
method datapoints(Str $goal) {
return $self->_userget( ['goals', $goal, 'datapoints.json']);
}