Sha256: 67b0f866bc1f5ac21bdc86acccfa2c27bb66c234c3feae77dfb7106328d64076
Contents?: true
Size: 563 Bytes
Versions: 4
Compression:
Stored size: 563 Bytes
Contents
require_relative "../base.rb" module Figo # Object representing the bank server synchronization status class SynchronizationStatus < Base @dump_attributes = [] # Internal figo Connect status code # @return [Integer] attr_accessor :code # Human-readable error message # @return [String] attr_accessor :message # Timestamp of last synchronization # @return [DateTime] attr_accessor :sync_timestamp # Timestamp of last successful synchronization # @return [DateTime] attr_accessor :success_timestamp end end
Version data entries
4 entries across 4 versions & 1 rubygems