Class: KillBillClient::Model::Export

Inherits:
Resource
  • Object
show all
Defined in:
lib/killbill_client/models/export.rb

Constant Summary collapse

KILLBILL_API_EXPORT_PREFIX =
"#{KILLBILL_API_PREFIX}/export"

Class Method Summary collapse

Class Method Details

.find_by_account_id(account_id, user = 'Ruby_Client', options = {}, reason = nil, comment = nil) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/killbill_client/models/export.rb', line 9

def (, user = 'Ruby_Client', options = {}, reason = nil, comment = nil)
  
  get "#{KILLBILL_API_EXPORT_PREFIX}/#{}",
  {},
  {
    :accept => 'application/octet-stream',
    :user    => user,
    :reason  => reason,
    :comment => comment      
  }.merge(options)
  
end