Module: WellsFargo::Endpoints
- Included in:
- API
- Defined in:
- lib/wells_fargo/endpoints.rb,
lib/wells_fargo/endpoints/ach.rb,
lib/wells_fargo/endpoints/base.rb,
lib/wells_fargo/endpoints/token.rb,
lib/wells_fargo/endpoints/wires.rb
Defined Under Namespace
Classes: ACH, Base, Token, Wires
Instance Method Summary
collapse
Instance Method Details
#ach ⇒ Object
14
15
16
|
# File 'lib/wells_fargo/endpoints.rb', line 14
def ach
ACH.new(self)
end
|
#token ⇒ Object
18
19
20
|
# File 'lib/wells_fargo/endpoints.rb', line 18
def token
Token.new(self)
end
|
#wires ⇒ Object
10
11
12
|
# File 'lib/wells_fargo/endpoints.rb', line 10
def wires
Wires.new(self)
end
|