class Quickeebooks::Windows::Model::SyncStatusResponse

Constants

MESSAGE_CODES
REST_RESOURCE

services.intuit.com/sb/status/v2/>

STATE_CODES
XML_COLLECTION_NODE
XML_NODE

Public Instance Methods

verbose_message_description() click to toggle source
# File lib/quickeebooks/windows/model/sync_status_response.rb, line 145
def verbose_message_description
  if MESSAGE_CODES[message_code.to_i]
    MESSAGE_CODES[message_code.to_i][:verbose]
  else
    nil
  end
end
verbose_state_description() click to toggle source
# File lib/quickeebooks/windows/model/sync_status_response.rb, line 137
def verbose_state_description
  if STATE_CODES[state_code.to_i]
    STATE_CODES[state_code.to_i][:verbose]
  else
    nil
  end
end