class PlatformAPI::Invoice

An invoice is an itemized bill of goods for an account which includes pricing and charges.

Public Class Methods

new(client) click to toggle source
# File lib/platform-api/client.rb, line 2049
def initialize(client)
  @client = client
end

Public Instance Methods

info(invoice_number) click to toggle source

Info for existing invoice.

@param invoice_number: human readable invoice number

# File lib/platform-api/client.rb, line 2056
def info(invoice_number)
  @client.invoice.info(invoice_number)
end
list() click to toggle source

List existing invoices.

# File lib/platform-api/client.rb, line 2061
def list()
  @client.invoice.list()
end