Class: ConferenceCallService::ConferenceConstants
- Inherits:
-
Object
- Object
- ConferenceCallService::ConferenceConstants
- Defined in:
- lib/conference_call_service/conference_constants.rb
Constant Summary collapse
- @@STATUS_ALL =
Conference Status.
0
- @@STATUS_DETAIL =
Conference Status.
1
- @@STATUS_PARTICIPANTS =
Conference Status.
2
- @@STATUS_SCHEDULE =
Conference Status.
3
- @@ACTION_MUTE =
Conference Participant Action constant.
1
- @@ACTION_UNMUTE =
Conference Participant Action constant.
0
- @@ACTION_REDIAL =
Conference Participant Action constant.
2
- @@CONFERENCE_LIST_ALL =
Conference list constant.
0
- @@CONFERENCE_LIST_ADHOC =
Conference list constant.
1
- @@CONFERENCE_LIST_SCHEDULE =
Conference list constant.
2
Class Method Summary collapse
- .ACTION_MUTE ⇒ Object
- .ACTION_UNMUTE ⇒ Object
- .CONFERENCE_LIST_ADHOC ⇒ Object
- .CONFERENCE_LIST_ALL ⇒ Object
- .CONFERENCE_LIST_SCHEDULE ⇒ Object
- .STATUS_ALL ⇒ Object
- .STATUS_DETAIL ⇒ Object
- .STATUS_PARTICIPANTS ⇒ Object
- .STATUS_SCHEDULE ⇒ Object
Class Method Details
.ACTION_MUTE ⇒ Object
50 51 52 |
# File 'lib/conference_call_service/conference_constants.rb', line 50 def self.ACTION_MUTE @@ACTION_MUTE end |
.ACTION_UNMUTE ⇒ Object
54 55 56 |
# File 'lib/conference_call_service/conference_constants.rb', line 54 def self.ACTION_UNMUTE @@ACTION_UNMUTE end |
.CONFERENCE_LIST_ADHOC ⇒ Object
62 63 64 |
# File 'lib/conference_call_service/conference_constants.rb', line 62 def self.CONFERENCE_LIST_ADHOC @@CONFERENCE_LIST_ADHOC end |
.CONFERENCE_LIST_ALL ⇒ Object
58 59 60 |
# File 'lib/conference_call_service/conference_constants.rb', line 58 def self.CONFERENCE_LIST_ALL @@CONFERENCE_LIST_ALL end |
.CONFERENCE_LIST_SCHEDULE ⇒ Object
66 67 68 |
# File 'lib/conference_call_service/conference_constants.rb', line 66 def self.CONFERENCE_LIST_SCHEDULE @@CONFERENCE_LIST_SCHEDULE end |
.STATUS_ALL ⇒ Object
34 35 36 |
# File 'lib/conference_call_service/conference_constants.rb', line 34 def self.STATUS_ALL @@STATUS_ALL end |
.STATUS_DETAIL ⇒ Object
38 39 40 |
# File 'lib/conference_call_service/conference_constants.rb', line 38 def self.STATUS_DETAIL @@STATUS_DETAIL end |
.STATUS_PARTICIPANTS ⇒ Object
42 43 44 |
# File 'lib/conference_call_service/conference_constants.rb', line 42 def self.STATUS_PARTICIPANTS @@STATUS_PARTICIPANTS end |
.STATUS_SCHEDULE ⇒ Object
46 47 48 |
# File 'lib/conference_call_service/conference_constants.rb', line 46 def self.STATUS_SCHEDULE @@STATUS_SCHEDULE end |