NAME

Net::ACME::Authorization - fulfilled ACME authorization object

SYNOPSIS

use Net::ACME::Authorization ();

my $authz = Net::ACME::Authorization->new(
    status => 'valid',  #or “invalid”
    challenges => [ @list_of_challenge_objects ],
);

my @challenge_objs = $authz->challenges();

my $payload;
while (!$cert) {
    if ($need_retry->is_time_to_poll()) {
        $cert = $need_retry->poll();
    }

    sleep 1;
}