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
- .owner_info ⇒ 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
17 18 19 20 |
# File 'lib/ruby_isds/data_box.rb', line 17 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 |
.owner_info ⇒ Object
13 14 15 |
# File 'lib/ruby_isds/data_box.rb', line 13 def self.owner_info ::RubyIsds::WebServices::DbAccess::GetOwnerInfoFromLogin.call end |
.ping ⇒ Object
37 38 39 |
# File 'lib/ruby_isds/data_box.rb', line 37 def self.ping RubyIsds::WebServices::DmOperations::Ping.call end |
.received(options = {}) ⇒ Object
22 23 24 25 |
# File 'lib/ruby_isds/data_box.rb', line 22 def self.received( = {}) RubyIsds::WebServices::DmInfo::GetListOfReceivedMessages .call() end |
.sent(options = {}) ⇒ Object
27 28 29 30 |
# File 'lib/ruby_isds/data_box.rb', line 27 def self.sent( = {}) RubyIsds::WebServices::DmInfo::GetListOfSentMessages .call() end |
.state_changes(options = {}) ⇒ Object
32 33 34 35 |
# File 'lib/ruby_isds/data_box.rb', line 32 def self.state_changes( = {}) RubyIsds::WebServices::DmInfo::GetMessageStateChanges .call() end |