Sha256: 37308938ce4588fad2133383fc31a54b6e98185048072e91b6323bc457fa895b
Contents?: true
Size: 658 Bytes
Versions: 11
Compression:
Stored size: 658 Bytes
Contents
module Killbill module Plugin class PaymentResponse attr_reader :amount_in_cents, :created_date, :effective_date, :status, :gateway_error, :gateway_error_code def initialize(amount_in_cents, created_date, effective_date, status, gateway_error=nil, gateway_error_code=nil) @amount_in_cents = amount_in_cents @created_date = created_date @effective_date = effective_date @status = status @gateway_error = gateway_error @gateway_error_code = gateway_error_code end end end end
Version data entries
11 entries across 11 versions & 1 rubygems