Class: Octobat::PaymentSource

Inherits:
APIResource show all
Extended by:
APIOperations::List
Includes:
APIOperations::Create
Defined in:
lib/octobat/payment_source.rb

Instance Attribute Summary

Attributes inherited from OctobatObject

#api_key, #parent_obj

Class Method Summary collapse

Methods included from APIOperations::List

list, set_parent_resource

Methods included from APIOperations::Create

included

Methods inherited from APIResource

class_name, #refresh, retrieve, #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

Class Method Details

.parent_resource(filters) ⇒ Object



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

def self.parent_resource(filters)
  @parent_resource = filters.select{|k, v| [:customer].include?(k)}
end

.urlObject



6
7
8
9
10
# File 'lib/octobat/payment_source.rb', line 6

def self.url
  if @parent_resource.include?(:customer)
    "#{Customer.url}/#{CGI.escape(@parent_resource[:customer])}/payment_sources"
  end
end