Net::PingFM::Trigger - Object which describes a ping fm trigger


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

Index


Code Index:

NAME

Top

Net::PingFM::Trigger - Object which describes a ping fm trigger

DESCRIPTION

Top

Ping.fm triggers let you post to multiple services

MISSING!

Top

This object doesn't yet know which services a trigger contains. This will hopefully be added soon!

ACCESSORS

Top

id

Identifier for this trigger

method

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;