The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

XML::APML::Author - author markup

SYNOPSIS

my $explicit_author = XML::APML::Author->new();
$explicit_author->key();
$explicit_author->value();

my $implicit_author = XML::APML::Author->new(
    key     => 'Sample',
    value   => 0.5,
    from    => 'GatheringTool.com',
    updated => '2007-03-11T01:55:00Z',
);

print $implicit_author->key;
print $implicit_author->value;
print $implicit_author->from;
print $implicit_author->updated;

$source->add_author($explicit_author);

DESCRIPTION

Class that represents Author mark-up for APML.

METHODS

new

key

value

from

updated