| Net-Plazes documentation | Contained in the Net-Plazes distribution. |
Net::Plazes::Plaze - representation of remote resource http://plazes.com/plazes(.*)
$Revision$
my @aFields = $oObj->fields();
Accessors are:
$Author: Roger Pettett$
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.10 or, at your option, any later version of Perl 5 you may have available.
| Net-Plazes documentation | Contained in the Net-Plazes distribution. |
######### # Author: rmp # Maintainer: $Author: rmp $ # Created: 2008-08-13 # Last Modified: $Date$ # Id: $Id$ # $HeadURL$ # package Net::Plazes::Plaze; use strict; use warnings; use base qw(Net::Plazes::Base); our $VERSION = '0.03'; __PACKAGE__->mk_accessors(fields()); __PACKAGE__->has_many(); sub service { return q[http://plazes.com/plazes]; } sub fields { return qw(id address category city country_code has_free_wifi created_at link name state timezone updated_at zip_code latitude longitude country picture_url); } 1; __END__