Class: Belvo::InvoiceOptions
- Inherits:
-
Object
- Object
- Belvo::InvoiceOptions
- Defined in:
- lib/belvo/options.rb
Overview
Contains configurable properties of an Invoice
Instance Attribute Summary collapse
-
#attach_xml ⇒ Object
Should the XML 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_xml ⇒ Object
Should the XML file be included in the response or not.
101 102 103 104 105 106 |
# File 'lib/belvo/options.rb', line 101 class InvoiceOptions < Faraday::Options.new( :save_data, :token, :attach_xml ) end |
#save_data ⇒ Object
Should data be persisted or not.
101 102 103 104 105 106 |
# File 'lib/belvo/options.rb', line 101 class InvoiceOptions < Faraday::Options.new( :save_data, :token, :attach_xml ) end |
#token ⇒ Object
OTP token required by the institution
101 102 103 104 105 106 |
# File 'lib/belvo/options.rb', line 101 class InvoiceOptions < Faraday::Options.new( :save_data, :token, :attach_xml ) end |