Class: KillBillClient::Model::Payment
Constant Summary
collapse
- KILLBILL_API_PAYMENTS_PREFIX =
"#{KILLBILL_API_PREFIX}/payments"
Constants included
from TagHelper
TagHelper::AUTO_INVOICING_OFF_ID, TagHelper::AUTO_PAY_OFF_ID, TagHelper::MANUAL_PAY_ID, TagHelper::OVERDUE_ENFORCEMENT_OFF_ID, TagHelper::TEST_ID, TagHelper::WRITTEN_OFF_ID
Class Method Summary
collapse
-
.attempt_audit_logs_with_history(payment_attempt_id, options = {}) ⇒ Object
-
.find_by_external_key(external_key, with_plugin_info = false, with_attempts = false, options = {}) ⇒ Object
-
.find_by_id(payment_id, with_plugin_info = false, with_attempts = false, options = {}) ⇒ Object
-
.find_by_transaction_external_key(external_key, with_plugin_info = false, with_attempts = false, audit = 'NONE', options = {}) ⇒ Object
-
.find_by_transaction_id(transaction_id, with_plugin_info = false, with_attempts = false, options = {}) ⇒ Object
-
.find_in_batches(offset = 0, limit = 100, options = {}) ⇒ Object
-
.find_in_batches_by_search_key(search_key, offset = 0, limit = 100, options = {}) ⇒ Object
included
Methods included from TagHelper
#add_tag, #add_tag_from_definition_id, #control_tag?, included, #remove_tag, #remove_tag_from_definition_id, #set_tags
included
Class Method Details
.attempt_audit_logs_with_history(payment_attempt_id, options = {}) ⇒ Object
77
78
79
80
81
82
|
# File 'lib/killbill_client/models/payment.rb', line 77
def attempt_audit_logs_with_history(payment_attempt_id, options = {})
get "#{KILLBILL_API_PAYMENTS_PREFIX}/attempts/#{payment_attempt_id}/auditLogsWithHistory",
{},
options,
AuditLog
end
|
.find_by_external_key(external_key, with_plugin_info = false, with_attempts = false, options = {}) ⇒ Object
29
30
31
32
33
34
35
36
37
|
# File 'lib/killbill_client/models/payment.rb', line 29
def find_by_external_key(external_key, with_plugin_info = false, with_attempts = false, options = {})
get "#{KILLBILL_API_PAYMENTS_PREFIX}",
{
:externalKey => external_key,
:withAttempts => with_attempts,
:withPluginInfo => with_plugin_info
},
options
end
|
.find_by_id(payment_id, with_plugin_info = false, with_attempts = false, options = {}) ⇒ Object
20
21
22
23
24
25
26
27
|
# File 'lib/killbill_client/models/payment.rb', line 20
def find_by_id(payment_id, with_plugin_info = false, with_attempts = false, options = {})
get "#{KILLBILL_API_PAYMENTS_PREFIX}/#{payment_id}",
{
:withAttempts => with_attempts,
:withPluginInfo => with_plugin_info
},
options
end
|
.find_by_transaction_external_key(external_key, with_plugin_info = false, with_attempts = false, audit = 'NONE', options = {}) ⇒ Object
48
49
50
51
52
53
54
55
56
57
|
# File 'lib/killbill_client/models/payment.rb', line 48
def find_by_transaction_external_key(external_key, with_plugin_info = false, with_attempts = false, audit='NONE', options = {})
get "#{Transaction::KILLBILL_API_TRANSACTIONS_PREFIX}",
{
:audit => audit,
:transactionExternalKey => external_key,
:withAttempts => with_attempts,
:withPluginInfo => with_plugin_info
},
options
end
|
.find_by_transaction_id(transaction_id, with_plugin_info = false, with_attempts = false, options = {}) ⇒ Object
39
40
41
42
43
44
45
46
|
# File 'lib/killbill_client/models/payment.rb', line 39
def find_by_transaction_id(transaction_id, with_plugin_info = false, with_attempts = false, options = {})
get "#{Transaction::KILLBILL_API_TRANSACTIONS_PREFIX}/#{transaction_id}",
{
:withAttempts => with_attempts,
:withPluginInfo => with_plugin_info
},
options
end
|
.find_in_batches(offset = 0, limit = 100, options = {}) ⇒ Object
59
60
61
62
63
64
65
66
|
# File 'lib/killbill_client/models/payment.rb', line 59
def find_in_batches(offset = 0, limit = 100, options = {})
get "#{KILLBILL_API_PAYMENTS_PREFIX}/#{Resource::KILLBILL_API_PAGINATION_PREFIX}",
{
:offset => offset,
:limit => limit
},
options
end
|
.find_in_batches_by_search_key(search_key, offset = 0, limit = 100, options = {}) ⇒ Object
68
69
70
71
72
73
74
75
|
# File 'lib/killbill_client/models/payment.rb', line 68
def find_in_batches_by_search_key(search_key, offset = 0, limit = 100, options = {})
get "#{KILLBILL_API_PAYMENTS_PREFIX}/search/#{search_key}",
{
:offset => offset,
:limit => limit
},
options
end
|