Sha256: 37fd9ed3666fb8ec854023ca0f4b2c8dac41d722da9e69babedf3ce4a7f076eb
Contents?: true
Size: 1.74 KB
Versions: 2
Compression:
Stored size: 1.74 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 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.13 | lib/killbill/payment.rb |
killbill-1.0.12 | lib/killbill/payment.rb |