Class: Figo::SynchronizationStatus

Inherits:
Base
  • Object
show all
Defined in:
lib/models.rb

Overview

Object representing the bank server synchronization status

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#dump, dump_attributes, #initialize

Constructor Details

This class inherits a constructor from Figo::Base

Instance Attribute Details

#codeInteger

Internal figo Connect status code

Returns:

  • (Integer)


362
363
364
# File 'lib/models.rb', line 362

def code
  @code
end

#messageString

Human-readable error message

Returns:

  • (String)


366
367
368
# File 'lib/models.rb', line 366

def message
  @message
end

#success_timestampDateTime

Timestamp of last successful synchronization

Returns:

  • (DateTime)


374
375
376
# File 'lib/models.rb', line 374

def success_timestamp
  @success_timestamp
end

#sync_timestampDateTime

Timestamp of last synchronization

Returns:

  • (DateTime)


370
371
372
# File 'lib/models.rb', line 370

def sync_timestamp
  @sync_timestamp
end