Class: KillBillClient::Model::Credit
- Inherits:
-
InvoiceItemAttributes
- Object
- Resource
- InvoiceItemAttributes
- KillBillClient::Model::Credit
- Defined in:
- lib/killbill_client/models/credit.rb
Constant Summary collapse
- KILLBILL_API_CREDITS_PREFIX =
"#{KILLBILL_API_PREFIX}/credits"
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.find_by_id(credit_id, options = {}) ⇒ Object
8 9 10 11 12 13 |
# File 'lib/killbill_client/models/credit.rb', line 8 def find_by_id(credit_id, = {}) get "#{KILLBILL_API_CREDITS_PREFIX}/#{credit_id}", {}, , InvoiceItemAttributes end |
Instance Method Details
#create(auto_commit = false, user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/killbill_client/models/credit.rb', line 16 def create(auto_commit = false, user = nil, reason = nil, comment = nil, = {}) created_credits = self.class.post KILLBILL_API_CREDITS_PREFIX, [to_hash].to_json, { :autoCommit => auto_commit }, { :user => user, :reason => reason, :comment => comment, }.merge() created_credits end |