WebService::MusicBrainz::Response::Artist - WebService::MusicBrainz::Response::Artist documentation


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

Index


Code Index:

NAME

Top

WebService::MusicBrainz::Response::Artist

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 an argument, they will return that state if it is available.

id()

type()

name()

sort_name()

disambiguation()

life_span_begin()

life_span_end()

alias_list()

release_list()

release_group_list()

relation_list()

relation_lists()

tag_list()

user_tag_list()

rating()

user_rating()

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::Artist;

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

our $VERSION = '0.93';

__PACKAGE__->mk_accessors(qw/id type name sort_name disambiguation life_span_begin life_span_end alias_list release_list release_group_list relation_list relation_lists tag_list user_tag_list rating user_rating score/);

1;