# File lib/fog/storm_on_demand/models/billing/invoices.rb, line 10defall(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 15defget(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 20defnextinvoice = service.next_invoice.bodynew(invoice)
end