Class: KillBillClient::Model::InvoiceItem
- Inherits:
-
InvoiceItemAttributes
- Object
- Resource
- InvoiceItemAttributes
- KillBillClient::Model::InvoiceItem
- Defined in:
- lib/killbill_client/models/invoice_item.rb
Instance Method Summary collapse
- #create(auto_commit = false, user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
-
#delete(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
Delete CBA.
-
#update(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
Adjust an invoice item.
Instance Method Details
#create(auto_commit = false, user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/killbill_client/models/invoice_item.rb', line 7 def create(auto_commit = false, user = nil, reason = nil, comment = nil, = {}) created_invoice_item = self.class.post "#{Invoice::KILLBILL_API_INVOICES_PREFIX}/charges/#{account_id}", [to_hash].to_json, {:autoCommit => auto_commit}, { :user => user, :reason => reason, :comment => comment, }.merge() created_invoice_item.first.refresh(, Invoice) end |
#delete(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
Delete CBA
Required: invoice_id, invoice_item_id
38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/killbill_client/models/invoice_item.rb', line 38 def delete(user = nil, reason = nil, comment = nil, = {}) self.class.delete "#{Invoice::KILLBILL_API_INVOICES_PREFIX}/#{invoice_id}/#{invoice_item_id}/cba", to_json, { :accountId => account_id }, { :user => user, :reason => reason, :comment => comment, }.merge() end |
#update(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
Adjust an invoice item
Required: account_id, invoice_id, invoice_item_id Optional: amount, currency
23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/killbill_client/models/invoice_item.rb', line 23 def update(user = nil, reason = nil, comment = nil, = {}) adjusted_invoice_item = self.class.post "#{Invoice::KILLBILL_API_INVOICES_PREFIX}/#{invoice_id}", to_json, {}, { :user => user, :reason => reason, :comment => comment, }.merge() adjusted_invoice_item.refresh(, Invoice) end |