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

NAME

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

SYNOPSIS

    use WebService::TypePad::Object::Blog;
    my $blog = WebService::TypePad::Object::Blog->new();

DESCRIPTION

This is a Perl representation of TypePad's Blog 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.

$blog->description

The description of the blog as provided by its owner.

Returns a single string value.

$blog->id

A URI that serves as a globally-unique id for the object. 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 blog object. The "alternate" hyperlink of type "text/html" points at the blog's home page.

Returns an array of LegacyHyperlink objects.

$blog->object_types

An array of object type identifier URIs. At the present time, only one object type is returned per object, but this may be extended in future. Clients should scan this list and ignore any types that are not recognized.

Returns a set of string values.

$blog->owner

The user that owns the blog.

Returns a single User object.

$blog->title

The title of the blog.

Returns a single string value.

$blog->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.

SEE ALSO