package
Net::ACME::Registration;
use
strict;
use
warnings;
#Expand this as needed.
agreement
key
terms_of_service
uri
)
;
sub
new {
my
(
$class
,
%opts
) =
@_
;
#Silently (?) reject anything unfamiliar.
%opts
=
map
{ (
$_
=>
$opts
{
$_
} ) } _ACCESSORS();
return
$class
->SUPER::new(
%opts
);
}
1;