Class: KillBillClient::Model::InvoiceItem

Inherits:
InvoiceItemAttributes show all
Defined in:
lib/killbill_client/models/invoice_item.rb

Constant Summary

Constants inherited from Resource

Resource::KILLBILL_API_PAGINATION_PREFIX, Resource::KILLBILL_API_PREFIX

Instance Attribute Summary

Attributes inherited from Resource

#clazz, #etag, #response, #session_id, #uri

Instance Method Summary collapse

Methods inherited from Resource

#==, #_to_hash, attribute, create_alias, delete, extract_session_id, from_json, from_response, get, has_many, has_one, #hash, head, #initialize, instantiate_record_from_json, post, put, #refresh, #to_hash, #to_json

Constructor Details

This class inherits a constructor from KillBillClient::Model::Resource

Instance Method Details

#create(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(user = nil, reason = nil, comment = nil, options = {})
  created_invoice_item = self.class.post "#{Invoice::KILLBILL_API_INVOICES_PREFIX}/charges/#{}",
                                         [to_hash].to_json,
                                         {},
                                         {
                                             :user    => user,
                                             :reason  => reason,
                                             :comment => comment,
                                         }.merge(options)
  created_invoice_item.first.refresh(options, 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, options = {})
  self.class.delete "#{Invoice::KILLBILL_API_INVOICES_PREFIX}/#{invoice_id}/#{invoice_item_id}/cba",
                    to_json,
                    {
                        :accountId => 
                    },
                    {
                        :user    => user,
                        :reason  => reason,
                        :comment => comment,
                    }.merge(options)
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, options = {})
  adjusted_invoice_item = self.class.post "#{Invoice::KILLBILL_API_INVOICES_PREFIX}/#{invoice_id}",
                                          to_json,
                                          {},
                                          {
                                              :user    => user,
                                              :reason  => reason,
                                              :comment => comment,
                                          }.merge(options)
  adjusted_invoice_item.refresh(options, Invoice)
end