From: Jonathan Prykop Date: Fri, 22 Jul 2016 22:09:01 +0000 (-0500) Subject: RT#33286: Direct Debit by BillBuddy for Bank Accounts [default host] X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-BatchPayment-BillBuddy.git;a=commitdiff_plain;h=a950ac254a964a63d4eea3a3de0c8ed6d1b0470c RT#33286: Direct Debit by BillBuddy for Bank Accounts [default host] --- diff --git a/BillBuddy.pm b/BillBuddy.pm index 88207d2..de2131c 100644 --- a/BillBuddy.pm +++ b/BillBuddy.pm @@ -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' => (