Net::OpenMicroBlogging::PostNoticeRequest - An OpenMicroBlogging protocol request for posting a notice


Net-OpenMicroBlogging documentation Contained in the Net-OpenMicroBlogging distribution.

Index


Code Index:

NAME

Top

Net::OpenMicroBlogging::PostNoticeRequest - An OpenMicroBlogging protocol request for posting a notice

SEE ALSO

Top

Net::OpenMicroBlogging::Request, http://openmicroblogging.org

AUTHOR

Top

Keith Grennan, <kgrennan at cpan.org>

COPYRIGHT & LICENSE

Top


Net-OpenMicroBlogging documentation Contained in the Net-OpenMicroBlogging distribution.

package Net::OpenMicroBlogging::PostNoticeRequest;
use warnings;
use strict;
use base qw(Net::OpenMicroBlogging::Message Net::OpenMicroBlogging::ProtectedResourceRequest);

__PACKAGE__->init_omb_message;

__PACKAGE__->add_required_message_params(qw/
                                         omb_version
                                         omb_listenee
                                         omb_notice
                                         omb_notice_content
                                         /);

__PACKAGE__->add_optional_message_params(qw/
                                         omb_notice_url
                                         omb_notice_license
                                         omb_seealso
                                         omb_seealso_disposition
                                         omb_seealso_mediatype
                                         omb_seealso_license
                                         /);


1;