WebService::MusicBrainz::Response::Relation - WebService::MusicBrainz::Response::Relation documentation


WebService-MusicBrainz documentation Contained in the WebService-MusicBrainz distribution.

Index


Code Index:

NAME

Top

WebService::MusicBrainz::Response::Relation

SYNOPSIS

Top

DESCRIPTION

Top

METHODS

Top

All the methods listed below are accessor methods. They can take a scalar argument to set the state of the object or without and argument, they will return that state if it is available.

type()

target()

direction()

attributes()

begin()

end()

artist()

release()

track()

score()

AUTHOR

Top

Bob Faist <bob.faist@gmail.com>

COPYRIGHT AND LICENSE

Top

SEE ALSO

Top

http://wiki.musicbrainz.org/XMLWebService


WebService-MusicBrainz documentation Contained in the WebService-MusicBrainz distribution.
package WebService::MusicBrainz::Response::Relation;

use strict;
use base 'Class::Accessor';

our $VERSION = '0.93';

__PACKAGE__->mk_accessors(qw/type target direction attributes begin end artist release track label score/);

1;