| Net-OpenMicroBlogging documentation | Contained in the Net-OpenMicroBlogging distribution. |
Net::OpenMicroBlogging::PostNoticeRequest - An OpenMicroBlogging protocol request for posting a notice
Net::OpenMicroBlogging::Request, http://openmicroblogging.org
Keith Grennan, <kgrennan at cpan.org>
Copyright 2007 Keith Grennan, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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;