NAME
Archive::Har::Creator - Represents the creator (software) of the HTTP Archive
VERSION
Version 0.03
SYNOPSIS
use Archive::Har();
my $http_archive_string = '"log": { "version": "1.1", .... ';
my $har = Archive::Har->new();
$har->string($http_archive_string);
print "Name: " . $har->creator()->name() . "\n";
print "Version: " . $har->creator()->version() . "\n";
print "Comment: " . $har->creator()->comment() . "\n";
SUBROUTINES/METHODS
name
returns the name of the Creator
version
returns the version of the Creator
comment
returns the comment about the Creator