| Net-PingFM documentation | Contained in the Net-PingFM distribution. |
Net::PingFM::Trigger - Object which describes a ping fm trigger
Ping.fm triggers let you post to multiple services
This object doesn't yet know which services a trigger contains. This will hopefully be added soon!
Identifier for this trigger
Post method for this trigger: e.g microblog, status.
| Net-PingFM documentation | Contained in the Net-PingFM distribution. |
package Net::PingFM::Trigger; use strict; # For show as moose does this anyway use Moose; use Moose::Util::TypeConstraints;
has id => ( is => 'rw', isa => 'Str', );
has method => ( is => 'rw', isa => 'Str', ); no Moose; ;1;