Class: PlatformAPI::InvoiceAddress
- Inherits:
-
Object
- Object
- PlatformAPI::InvoiceAddress
- 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
-
#info ⇒ Object
Retrieve existing invoice address.
-
#initialize(client) ⇒ InvoiceAddress
constructor
A new instance of InvoiceAddress.
-
#update(body = {}) ⇒ Object
Update invoice address for an account.
Constructor Details
#initialize(client) ⇒ InvoiceAddress
Returns a new instance of InvoiceAddress.
1324 1325 1326 |
# File 'lib/platform-api/client.rb', line 1324 def initialize(client) @client = client end |
Instance Method Details
#info ⇒ Object
Retrieve existing invoice address.
1329 1330 1331 |
# File 'lib/platform-api/client.rb', line 1329 def info() @client.invoice_address.info() end |
#update(body = {}) ⇒ Object
Update invoice address for an account.
1336 1337 1338 |
# File 'lib/platform-api/client.rb', line 1336 def update(body = {}) @client.invoice_address.update(body) end |