Class: Belvo::TransactionOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/belvo/options.rb

Overview

Contains configurable properties for a Transaction

Instance Attribute Summary collapse

Instance Attribute Details

#accountObject

Account ID (UUID)



41
42
43
44
45
46
47
# File 'lib/belvo/options.rb', line 41

class TransactionOptions < Faraday::Options.new(
  :date_to,
  :account,
  :token,
  :save_data
)
end

#date_toObject

Date string (YYYY-MM-DD)



41
42
43
44
45
46
47
# File 'lib/belvo/options.rb', line 41

class TransactionOptions < Faraday::Options.new(
  :date_to,
  :account,
  :token,
  :save_data
)
end

#save_dataObject

Should data be persisted or not.



41
42
43
44
45
46
47
# File 'lib/belvo/options.rb', line 41

class TransactionOptions < Faraday::Options.new(
  :date_to,
  :account,
  :token,
  :save_data
)
end

#tokenObject

OTP token required by the institution



41
42
43
44
45
46
47
# File 'lib/belvo/options.rb', line 41

class TransactionOptions < Faraday::Options.new(
  :date_to,
  :account,
  :token,
  :save_data
)
end