123456789101112 package Net::Braintree::UnknownPaymentMethod;use Moose;extends 'Net::Braintree::PaymentMethod';my $meta = __PACKAGE__->meta;sub BUILD { my ($self, $attributes) = @_; $self->set_attributes_from_hash($self, $attributes);}1;
package
Net::Braintree::UnknownPaymentMethod;
use
Moose;
extends
'Net::Braintree::PaymentMethod'
;
my
$meta
= __PACKAGE__->meta;
sub
BUILD {
(
$self
,
$attributes
) =
@_
->set_attributes_from_hash(
);
}
1;