Class: Nfe::Webservices::Wsinfo::WsdlBase
- Inherits:
-
Object
- Object
- Nfe::Webservices::Wsinfo::WsdlBase
show all
- Defined in:
- lib/nfe/webservices/wsinfo/wsdl_base.rb
Direct Known Subclasses
Production::Am, Production::Ba, Production::Ce, Production::Go, Production::Mg, Production::Ms, Production::Mt, Production::Pe, Production::Pr, Production::Rs, Production::Sp, Production::Svan, Production::Svrs, Test::Am, Test::Ce, Test::Go, Test::Mg, Test::Ms, Test::Mt, Test::Pe
Instance Method Summary
collapse
Constructor Details
Returns a new instance of WsdlBase.
5
6
7
8
9
10
11
12
|
# File 'lib/nfe/webservices/wsinfo/wsdl_base.rb', line 5
def initialize
@authorize = "NfeAutorizacao"
@situation = "NfeConsulta2"
@disenable = "NfeInutilizacao2"
@event = "RecepcaoEvento"
@service_status = "NfeStatusServico2"
@consult_emitter = "CadConsultaCadastro2"
end
|
Instance Method Details
#authorize ⇒ Object
14
15
16
|
# File 'lib/nfe/webservices/wsinfo/wsdl_base.rb', line 14
def authorize
url @authorize
end
|
#consult_emitter ⇒ Object
34
35
36
|
# File 'lib/nfe/webservices/wsinfo/wsdl_base.rb', line 34
def consult_emitter
url @consult_emitter
end
|
#disenable ⇒ Object
22
23
24
|
# File 'lib/nfe/webservices/wsinfo/wsdl_base.rb', line 22
def disenable
url @disenable
end
|
#event ⇒ Object
26
27
28
|
# File 'lib/nfe/webservices/wsinfo/wsdl_base.rb', line 26
def event
url @event
end
|
#service_status ⇒ Object
30
31
32
|
# File 'lib/nfe/webservices/wsinfo/wsdl_base.rb', line 30
def service_status
url @service_status
end
|
#situation ⇒ Object
18
19
20
|
# File 'lib/nfe/webservices/wsinfo/wsdl_base.rb', line 18
def situation
url @situation
end
|