# File lib/fog/storm_on_demand/models/billing/invoices.rb, line 11defall(options={})
invoices = service.list_invoices(options).body['items']
load(invoices)
end
get(invoice_id)click to toggle source
# File lib/fog/storm_on_demand/models/billing/invoices.rb, line 16defget(invoice_id)
invoice = service.get_invoice(:id =>invoice_id).bodynew(invoice)
end
next()click to toggle source
# File lib/fog/storm_on_demand/models/billing/invoices.rb, line 21defnextinvoice = service.next_invoice.bodynew(invoice)
end