The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Facebook::Graph::Publish::RSVPAttending;
$Facebook::Graph::Publish::RSVPAttending::VERSION = '1.0900';
use Moo;
extends 'Facebook::Graph::Publish';

use constant object_path => '/attending';

1;

=head1 NAME

Facebook::Graph::Publish::RSVPAttending - RSVP attending to an event.

=head1 VERSION

version 1.0900

=head1 SYNOPSIS

 my $fb = Facebook::Graph->new;

 $fb->rsvp_attending($event_id)
    ->publish;

=head1 DESCRIPTION

RSVP's "Attending" to an event.

B<ATTENTION:> You must have the C<rsvp_event> privilege to use this module.

=head1 METHODS


=head2 publish ( )

Posts the data and returns a L<Facebook::Graph::Response> object. The response object should contain a string of either 'true' or 'false'.

=head1 LEGAL

Facebook::Graph is Copyright 2010 - 2012 Plain Black Corporation (L<http://www.plainblack.com>) and is licensed under the same terms as Perl itself.

=cut