Class: EFax::Request
- Inherits:
-
Object
show all
- Defined in:
- lib/efax/outbound.rb
Overview
Base class for OutboundRequest and OutboundStatus classes
Class Method Summary
collapse
Class Method Details
.account_id ⇒ Object
42
43
44
|
# File 'lib/efax/outbound.rb', line 42
def self.account_id
@@account_id
end
|
.account_id=(id) ⇒ Object
45
46
47
|
# File 'lib/efax/outbound.rb', line 45
def self.account_id=(id)
@@account_id = id
end
|
.password ⇒ Object
35
36
37
|
# File 'lib/efax/outbound.rb', line 35
def self.password
@@password
end
|
.password=(password) ⇒ Object
38
39
40
|
# File 'lib/efax/outbound.rb', line 38
def self.password=(password)
@@password = password
end
|
.user ⇒ Object
28
29
30
|
# File 'lib/efax/outbound.rb', line 28
def self.user
@@user
end
|
.user=(name) ⇒ Object
31
32
33
|
# File 'lib/efax/outbound.rb', line 31
def self.user=(name)
@@user = name
end
|