Class: RubyIsds::DataBox
- Inherits:
-
Object
- Object
- RubyIsds::DataBox
- Defined in:
- lib/ruby_isds/data_box.rb
Class Method Summary collapse
- .check(options = {}) ⇒ Object
- .credit_info(options = {}) ⇒ Object
- .find_by(options = {}) ⇒ Object
- .ping ⇒ Object
- .received(options = {}) ⇒ Object
- .sent(options = {}) ⇒ Object
- .state_changes(options = {}) ⇒ Object
Class Method Details
.check(options = {}) ⇒ Object
3 4 5 6 |
# File 'lib/ruby_isds/data_box.rb', line 3 def self.check( = {}) ::RubyIsds::WebServices::DbSearch::CheckDataBox .call(.merge(dbID: ::RubyIsds.configuration.data_box)) end |
.credit_info(options = {}) ⇒ Object
13 14 15 16 |
# File 'lib/ruby_isds/data_box.rb', line 13 def self.credit_info( = {}) ::RubyIsds::WebServices::DbSearch::DataBoxCreditInfo .call(.merge(dbID: ::RubyIsds.configuration.data_box)) end |
.find_by(options = {}) ⇒ Object
8 9 10 11 |
# File 'lib/ruby_isds/data_box.rb', line 8 def self.find_by( = {}) ::RubyIsds::WebServices::DbSearch::FindDataBox .call() end |
.ping ⇒ Object
33 34 35 |
# File 'lib/ruby_isds/data_box.rb', line 33 def self.ping RubyIsds::WebServices::DmOperations::Ping.call end |
.received(options = {}) ⇒ Object
18 19 20 21 |
# File 'lib/ruby_isds/data_box.rb', line 18 def self.received( = {}) RubyIsds::WebServices::DmInfo::GetListOfReceivedMessages .call() end |
.sent(options = {}) ⇒ Object
23 24 25 26 |
# File 'lib/ruby_isds/data_box.rb', line 23 def self.sent( = {}) RubyIsds::WebServices::DmInfo::GetListOfSentMessages .call() end |
.state_changes(options = {}) ⇒ Object
28 29 30 31 |
# File 'lib/ruby_isds/data_box.rb', line 28 def self.state_changes( = {}) RubyIsds::WebServices::DmInfo::GetMessageStateChanges .call() end |