Class: EFax::Request
- Inherits:
-
Object
show all
- Defined in:
- lib/efax.rb
Overview
Base class for OutboundRequest and OutboundStatus classes
Class Method Summary
collapse
Class Method Details
.account_id ⇒ Object
67
68
69
|
# File 'lib/efax.rb', line 67
def self.account_id
@@account_id
end
|
.account_id=(id) ⇒ Object
70
71
72
|
# File 'lib/efax.rb', line 70
def self.account_id=(id)
@@account_id = id
end
|
.password ⇒ Object
60
61
62
|
# File 'lib/efax.rb', line 60
def self.password
@@password
end
|
.password=(password) ⇒ Object
63
64
65
|
# File 'lib/efax.rb', line 63
def self.password=(password)
@@password = password
end
|
.user ⇒ Object
53
54
55
|
# File 'lib/efax.rb', line 53
def self.user
@@user
end
|
.user=(name) ⇒ Object
56
57
58
|
# File 'lib/efax.rb', line 56
def self.user=(name)
@@user = name
end
|