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

NAME

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

SYNOPSIS

    use WebService::TypePad::Object::ObjectType;
    my $object_type = WebService::TypePad::Object::ObjectType->new();

DESCRIPTION

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

$object_type->name

The name of the type. Absent if this is an anonymous type representing the request or response of an action endpoint.

Returns a single string value.

$object_type->parent_type

The name of the parent type, if any.

Returns a single string value.

$object_type->properties

The properties of this type.

Returns an array of ObjectProperty objects.

SEE ALSO