| Email-ConstantContact documentation | Contained in the Email-ConstantContact distribution. |
Email::ConstantContact::Resource - Internal class to interact with ConstantContact Resource Objects.
Version 0.05
Adam Rich, <arich at cpan.org>
Please report any bugs or feature requests to bug-email-constantcontact at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Email-ConstantContact. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Email::ConstantContact::Resource
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Email-ConstantContact
Copyright 2009-2011 Adam Rich, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Email-ConstantContact documentation | Contained in the Email-ConstantContact distribution. |
package Email::ConstantContact::Resource; use warnings; use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); require Exporter; @ISA = qw(Exporter); @EXPORT = qw( ); $VERSION = '0.05';
sub new { my $class = shift; my $ccobj = shift; my $data = shift; my $self = { '_cc' => $ccobj, 'href' => $data->{'href'}, 'title' => $data->{'atom:title'}->{'content'}, 'accept' => $data->{'accept'}, }; bless ($self, $class); return $self; }
1; # End of Email::ConstantContact::Resource