Class: Hipay::BusinessLines
- Inherits:
-
Object
- Object
- Hipay::BusinessLines
- Defined in:
- lib/hipay.rb
Instance Method Summary collapse
- #build_basic_request ⇒ Object
- #get(locale) ⇒ Object
-
#initialize(wsLogin, wsPassword, test: false) ⇒ BusinessLines
constructor
A new instance of BusinessLines.
Constructor Details
#initialize(wsLogin, wsPassword, test: false) ⇒ BusinessLines
Returns a new instance of BusinessLines.
152 153 154 155 156 |
# File 'lib/hipay.rb', line 152 def initialize(wsLogin, wsPassword, test: false) @wsLogin = wsLogin @wsPassword = wsPassword @test = test end |
Instance Method Details
#build_basic_request ⇒ Object
165 166 167 |
# File 'lib/hipay.rb', line 165 def build_basic_request { wsLogin: @wsLogin, wsPassword: @wsPassword, locale: @locale } end |