NAME
WebService::Strava::Club - A Strava Club Object
VERSION
version 0.06
SYNOPSIS
This will return a Club Gear Object.
DESCRIPTION
An Athlete can be a member of one or many clubs.
METHODS
retrieve()
$club->retrieve();
When a Club object is lazy loaded, you can call retrieve it by calling this method.
list_members
$club->list_members([page => 2], [activities => 100]);
Returns an arrayRef of WebService::Strava::Athlete objects for the Club. Takes 2 optional parameters of 'page' and 'members' (per page).
The results are paginated and a maximum of 200 results can be returned per page.
list_activities
$club->list_activities([page => 2], [activities => 100]);
Returns an arrayRef of WebService::Strava::Athlete::Activity objects for the club. Takes 2 optional parameters of 'page' and 'activities' (per page).
The results are paginated and a maximum of 200 results can be returned per page.
AUTHOR
Leon Wright < techman@cpan.org >
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Leon Wright.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.