Class: Octobat::Customer

Inherits:
APIResource show all
Extended by:
APIOperations::List
Includes:
APIOperations::Create, APIOperations::Delete, APIOperations::Update
Defined in:
lib/octobat/customer.rb

Instance Attribute Summary

Attributes inherited from OctobatObject

#api_key, #parent_obj

Instance Method Summary collapse

Methods included from APIOperations::List

list, set_parent_resource

Methods included from APIOperations::Delete

#delete

Methods included from APIOperations::Update

#save, #serialize_metadata, #serialize_params

Methods included from APIOperations::Create

included

Methods inherited from APIResource

class_name, #refresh, retrieve, url, #url

Methods inherited from OctobatObject

#[], #[]=, #_dump, _load, #as_json, construct_from, #each, #initialize, #inspect, #keys, #refresh_from, #respond_to?, #to_hash, #to_json, #to_s, #values

Constructor Details

This class inherits a constructor from Octobat::OctobatObject

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Octobat::OctobatObject

Instance Method Details

#credit_notes(params = {}) ⇒ Object



12
13
14
# File 'lib/octobat/customer.rb', line 12

def credit_notes(params = {})
  CreditNote.all(params.merge({ :customer => id }), @api_key)
end

#invoices(params = {}) ⇒ Object



8
9
10
# File 'lib/octobat/customer.rb', line 8

def invoices(params = {})
  Invoice.all(params.merge({ :customer => id }), @api_key)
end

#payment_sources(params = {}) ⇒ Object



16
17
18
# File 'lib/octobat/customer.rb', line 16

def payment_sources(params = {})
  PaymentSource.all(params.merge({ :customer => id }), @api_key)
end