Sha256: 68bcd51c1255b1ccd2a1e077f616419307b7d5ebe70a6f4bae09da1d7febf474
Contents?: true
Size: 579 Bytes
Versions: 4
Compression:
Stored size: 579 Bytes
Contents
require_relative "../base.rb" module Figo # Object representing a bank, i.e. an connection to a bank class Bank < Base @dump_attributes = [:sepa_creditor_id] def initialize(session, json) super(session, json) end # Internal figo Connect bank ID # @return [String] attr_accessor :bank_id # SEPA direct debit creditor ID # @return [String] attr_accessor :sepa_creditor_id # This flag indicates whether the user has chosen to save the PIN on the figo Connect server # @return [Boolean] attr_accessor :save_pin end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
figo-1.4.2 | lib/bank/model.rb |
figo-1.4.1 | lib/bank/model.rb |
figo-1.4.0 | lib/bank/model.rb |
figo-1.3.3 | lib/bank/model.rb |