Games-Lacuna-Client

 view release on metacpan or  search on metacpan

lib/Games/Lacuna/Client/Inbox.pm  view on Meta::CPAN

package Games::Lacuna::Client::Inbox;
{
  $Games::Lacuna::Client::Inbox::VERSION = '0.003';
}
use 5.0080000;
use strict;
use warnings;
use Carp 'croak';

use Games::Lacuna::Client;
use Games::Lacuna::Client::Module;
our @ISA = qw(Games::Lacuna::Client::Module);

sub api_methods {
  return {
    (
      map {
        ($_ => { default_args => [qw(session_id)] })
      }
      qw(
        view_inbox
        view_archived
        view_trashed
        view_sent
        read_message
        archive_messages
        trash_messages
        send_message
      )
    ),
  };
}

#sub new {
#  my $class = shift;
#  my %opt = @_;
#  my $self = $class->SUPER::new(@_);
#  bless $self => $class;
#  $self->{body_id} = $opt{id};
#  return $self;
#}


__PACKAGE__->init();

1;
__END__

=head1 NAME

Games::Lacuna::Client::Inbox - The inbox module

=head1 SYNOPSIS

  use Games::Lacuna::Client;

=head1 DESCRIPTION

=head1 AUTHOR

Steffen Mueller, E<lt>smueller@cpan.orgE<gt>

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2010 by Steffen Mueller

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.0 or,
at your option, any later version of Perl 5 you may have available.

=cut

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.563 second using v1.00-cache-2.02-grep-82fe00e-cpan-d29e8ade9f55 )