Class: Afipws::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/afipws/client.rb

Instance Method Summary collapse

Constructor Details

#initialize(savon_options) ⇒ Client

Returns a new instance of Client.



3
4
5
# File 'lib/afipws/client.rb', line 3

def initialize savon_options
  @client = Savon.client savon_options.reverse_merge(soap_version: 2, ssl_version: :TLSv1)
end

Instance Method Details

#operationsObject



11
12
13
# File 'lib/afipws/client.rb', line 11

def operations
  @client.operations
end

#request(action, body = nil) ⇒ Object



7
8
9
# File 'lib/afipws/client.rb', line 7

def request action, body = nil
  @client.call action, message: body
end