Class: Belvo::TaxReturnOptions
- Inherits:
-
Object
- Object
- Belvo::TaxReturnOptions
- Defined in:
- lib/belvo/options.rb
Overview
Contains configurable properties of a TaxReturn
Instance Attribute Summary collapse
-
#attach_pdf ⇒ Object
Should the PDF file be included in the response or not.
-
#save_data ⇒ Object
Should data be persisted or not.
-
#token ⇒ Object
OTP token required by the institution.
Instance Attribute Details
#attach_pdf ⇒ Object
Should the PDF file be included in the response or not.
143 144 145 146 147 148 149 150 151 |
# File 'lib/belvo/options.rb', line 143 class TaxReturnOptions < Faraday::Options.new( :token, :save_data, :attach_pdf, :type, :date_from, :date_to ) end |
#save_data ⇒ Object
Should data be persisted or not.
143 144 145 146 147 148 149 150 151 |
# File 'lib/belvo/options.rb', line 143 class TaxReturnOptions < Faraday::Options.new( :token, :save_data, :attach_pdf, :type, :date_from, :date_to ) end |
#token ⇒ Object
OTP token required by the institution
143 144 145 146 147 148 149 150 151 |
# File 'lib/belvo/options.rb', line 143 class TaxReturnOptions < Faraday::Options.new( :token, :save_data, :attach_pdf, :type, :date_from, :date_to ) end |