Sha256: 081dc579bfd0772f14ca87f4a771c0fdd27fab43128dbc3cf3b1dde8022887a9
Contents?: true
Size: 1.86 KB
Versions: 2
Compression:
Stored size: 1.86 KB
Contents
require 'killbill/plugin' require 'killbill/response/payment_status' require 'killbill/response/payment_response' require 'killbill/response/refund_response' require 'killbill/response/payment_method_response' require 'killbill/response/payment_method_response_internal' module Killbill module Plugin class Payment < PluginBase class OperationUnsupportedByGatewayError < NotImplementedError end def process_payment(kb_account_id, kb_payment_id, kb_payment_method_id, amount_in_cents, currency, options = {}) raise OperationUnsupportedByGatewayError end def get_payment_info(kb_account_id, kb_payment_id, options = {}) raise OperationUnsupportedByGatewayError end def process_refund(kb_account_id, kb_payment_id, amount_in_cents, currency, options = {}) raise OperationUnsupportedByGatewayError end def get_refund_info(kb_account_id, kb_payment_id, options = {}) raise OperationUnsupportedByGatewayError end def add_payment_method(kb_account_id, kb_payment_method_id, payment_method_props, set_default, options = {}) raise OperationUnsupportedByGatewayError end def delete_payment_method(kb_account_id, kb_payment_method_id, options = {}) raise OperationUnsupportedByGatewayError end def get_payment_method_detail(kb_account_id, kb_payment_method_id, options = {}) raise OperationUnsupportedByGatewayError end def set_default_payment_method(kb_account_id, kb_payment_method_id, options = {}) raise OperationUnsupportedByGatewayError end def get_payment_methods(kb_account_id, refresh_from_gateway, options = {}) raise OperationUnsupportedByGatewayError end def reset_payment_methods(kb_account_id, payment_methods) raise OperationUnsupportedByGatewayError end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
killbill-1.0.15 | lib/killbill/payment.rb |
killbill-1.0.14 | lib/killbill/payment.rb |