Class: Belvo::TaxStatusOptions
- Inherits:
-
Object
- Object
- Belvo::TaxStatusOptions
- Defined in:
- lib/belvo/options.rb
Overview
Contains configurable properties of a TaxStatus in Belvo. By default, this is set to ‘true` and we return a 201 Created response. When set to `false`, the data won’t be persisted and we return a 200 OK response.
Instance Attribute Summary collapse
-
#attach_pdf ⇒ Object
Should the PDF file be included in the response or not.
-
#save_data ⇒ Object
Indicates whether or not to persist the data.
-
#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.
191 192 193 194 195 196 |
# File 'lib/belvo/options.rb', line 191 class TaxStatusOptions < Faraday::Options.new( :token, :save_data, :attach_pdf ) end |
#save_data ⇒ Object
Indicates whether or not to persist the data
191 192 193 194 195 196 |
# File 'lib/belvo/options.rb', line 191 class TaxStatusOptions < Faraday::Options.new( :token, :save_data, :attach_pdf ) end |
#token ⇒ Object
OTP token required by the institution
191 192 193 194 195 196 |
# File 'lib/belvo/options.rb', line 191 class TaxStatusOptions < Faraday::Options.new( :token, :save_data, :attach_pdf ) end |