The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::TypePad::Object::Event - Perl representation of TypePad's Event object type

SYNOPSIS

    use WebService::TypePad::Object::Event;
    my $event = WebService::TypePad::Object::Event->new();

DESCRIPTION

This is a Perl representation of TypePad's Event object type. For more information about this type and its parameters, see the documentation on TypePad's developer site.

PROPERTIES

Each of these properties has an accessor method which will retrieve the property's value when called with no arguments or set the property's value when called with one argument.

$event->actor

The user that did the action that the event describes.

Returns a single User object.

$event->id

A URI that serves as a globally-unique id for the user. This can be used to recognise where the same user is returned in response to different requests, and as a mapping key for an application's local data store.

Returns a single string value.

The hyperlinks for the user object. The "alternate" hyperlink of type "text/html" points at the user's TypePad profile page.

Returns an array of LegacyHyperlink objects.

$event->object

The object that the action was done to.

Returns a single Base object.

$event->url_id

A string containing the canonical identifier that can be used as the "id" for this object in URLs. However, this should not be used as a database key to avoid collisions when an application is switched to a different backend server; use the "id" property instead.

Returns a single string value.

$event->verbs

An array of verb identifier URIs. At the present time, only one verb is returned, but this may be extended in future. Clients should scan this list and ignore any verbs that are not recognised. This list also includes appropriate verb URIs as defined by the ActivityStrea.ms schema specification.

Returns a set of string values.

SEE ALSO