Class: Figo::SynchronizationStatus

Inherits:
Base
  • Object
show all
Defined in:
lib/synchronization_status/model.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)


9
10
11
# File 'lib/synchronization_status/model.rb', line 9

def code
  @code
end

#messageString

Human-readable error message

Returns:

  • (String)


13
14
15
# File 'lib/synchronization_status/model.rb', line 13

def message
  @message
end

#success_timestampDateTime

Timestamp of last successful synchronization

Returns:

  • (DateTime)


21
22
23
# File 'lib/synchronization_status/model.rb', line 21

def success_timestamp
  @success_timestamp
end

#sync_timestampDateTime

Timestamp of last synchronization

Returns:

  • (DateTime)


17
18
19
# File 'lib/synchronization_status/model.rb', line 17

def sync_timestamp
  @sync_timestamp
end