module Centralpos

Allowed Operations: [

:add_registro,
:del_registro,
:get_estado_presentaciones,
:get_presentaciones_abiertas,
:list_registros,
:list_tarjetas_habilitadas,
:put_procesa_presentacion

]

Deprecated Operations: [

:get_respuesta_presentacion,
:get_detalles_presentacion_respondida,
:put_datos_presentacion_abierta,
:get_presentaciones_futuras,
:get_presentaciones_respondidas

]

Constants

VERSION

Public Class Methods

default_timezone() click to toggle source
# File lib/centralpos.rb, line 37
def default_timezone
  @@default_timezone
end
default_timezone=(value) click to toggle source
# File lib/centralpos.rb, line 57
def default_timezone=(value)
  @@default_timezone = value
end
override_timezone() click to toggle source
# File lib/centralpos.rb, line 33
def override_timezone
  @@override_timezone
end
override_timezone=(value) click to toggle source
# File lib/centralpos.rb, line 53
def override_timezone=(value)
  @@override_timezone = value.is_a?(Boolean) ? value : true
end
production_wsdl_endpoint() click to toggle source
# File lib/centralpos.rb, line 29
def production_wsdl_endpoint
  @@production_wsdl_endpoint
end
production_wsdl_endpoint=(url_string) click to toggle source
# File lib/centralpos.rb, line 49
def production_wsdl_endpoint=(url_string)
  @@production_wsdl_endpoint = url_string
end
sandbox_wsdl_endpoint() click to toggle source
# File lib/centralpos.rb, line 25
def sandbox_wsdl_endpoint
  @@sandbox_wsdl_endpoint
end
sandbox_wsdl_endpoint=(url_string) click to toggle source
# File lib/centralpos.rb, line 45
def sandbox_wsdl_endpoint=(url_string)
  @@sandbox_wsdl_endpoint = url_string
end
setup() { |self| ... } click to toggle source
# File lib/centralpos.rb, line 41
def setup
  yield self
end