Class: Belvo::InvoiceOptions

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

Overview

Contains configurable properties of an Invoice

Instance Attribute Summary collapse

Instance Attribute Details

#attach_xmlObject

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_dataObject

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

#tokenObject

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