class RubyIsds::DataBox

Public Class Methods

check(options = {}) click to toggle source
# File lib/ruby_isds/data_box.rb, line 3
def self.check(options = {})
  ::RubyIsds::WebServices::DbSearch::CheckDataBox
    .call(options.merge(dbID: ::RubyIsds.configuration.data_box))
end
credit_info(options = {}) click to toggle source
# File lib/ruby_isds/data_box.rb, line 17
def self.credit_info(options = {})
  ::RubyIsds::WebServices::DbSearch::DataBoxCreditInfo
    .call(options.merge(dbID: ::RubyIsds.configuration.data_box))
end
find_by(options = {}) click to toggle source
# File lib/ruby_isds/data_box.rb, line 8
def self.find_by(options = {})
  ::RubyIsds::WebServices::DbSearch::FindDataBox
    .call(options)
end
owner_info() click to toggle source
# File lib/ruby_isds/data_box.rb, line 13
def self.owner_info
  ::RubyIsds::WebServices::DbAccess::GetOwnerInfoFromLogin.call
end
ping() click to toggle source
# File lib/ruby_isds/data_box.rb, line 37
def self.ping
  RubyIsds::WebServices::DmOperations::Ping.call
end
received(options = {}) click to toggle source
# File lib/ruby_isds/data_box.rb, line 22
def self.received(options = {})
  RubyIsds::WebServices::DmInfo::GetListOfReceivedMessages
    .call(options)
end
sent(options = {}) click to toggle source
# File lib/ruby_isds/data_box.rb, line 27
def self.sent(options = {})
  RubyIsds::WebServices::DmInfo::GetListOfSentMessages
    .call(options)
end
state_changes(options = {}) click to toggle source
# File lib/ruby_isds/data_box.rb, line 32
def self.state_changes(options = {})
  RubyIsds::WebServices::DmInfo::GetMessageStateChanges
    .call(options)
end