Class: PlatformAPI::InvoiceAddress

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

An invoice address represents the address that should be listed on an invoice.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ InvoiceAddress

Returns a new instance of InvoiceAddress.



2006
2007
2008
# File 'lib/platform-api/client.rb', line 2006

def initialize(client)
  @client = client
end

Instance Method Details

#infoObject

Retrieve existing invoice address.



2011
2012
2013
# File 'lib/platform-api/client.rb', line 2011

def info()
  @client.invoice_address.info()
end

#update(body = {}) ⇒ Object

Update invoice address for an account.

Parameters:

  • body:

    the object to pass as the request payload



2018
2019
2020
# File 'lib/platform-api/client.rb', line 2018

def update(body = {})
  @client.invoice_address.update(body)
end