Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use Moose;
sub BUILD {
my ($self, $attributes) = @_;
$self->set_attributes_from_hash($self, $attributes);
}
sub generate {
my($class, $settlement_date, $group_by_custom_field) = @_;
$class->gateway->settlement_batch_summary->generate($settlement_date, $group_by_custom_field);
}
sub gateway {
return Net::Braintree->configuration->gateway;
}
1;