RT#33286: Direct Debit by BillBuddy for Bank Accounts [default host]
authorJonathan Prykop <jonathan@freeside.biz>
Fri, 22 Jul 2016 22:09:01 +0000 (17:09 -0500)
committerJonathan Prykop <jonathan@freeside.biz>
Fri, 22 Jul 2016 22:09:01 +0000 (17:09 -0500)
BillBuddy.pm

index 88207d2..de2131c 100644 (file)
@@ -86,11 +86,17 @@ use Business::BatchPayment;
 use Moose;
 with 'Business::BatchPayment::Processor';
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
-has [ qw(username password host) ] => (
+has [ qw(username password) ] => (
+   is  => 'ro',
+   isa => 'Str',
+);
+
+has 'host' => (
    is  => 'ro',
    isa => 'Str',
+   default => 'xmlrpc.billbuddy.com',
 );
 
 has 'path' => (