Class: Io::Flow::V0::Models::InvoiceExportForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::InvoiceExportForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#date_from ⇒ Object
readonly
Returns the value of attribute date_from.
-
#date_to ⇒ Object
readonly
Returns the value of attribute date_to.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ InvoiceExportForm
constructor
A new instance of InvoiceExportForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ InvoiceExportForm
Returns a new instance of InvoiceExportForm.
36622 36623 36624 36625 36626 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36622 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) @date_from = (x = opts.delete(:date_from); x.nil? ? nil : HttpClient::Preconditions.assert_class('date_from', HttpClient::Helper.to_date_iso8601(x), Date)) @date_to = (x = opts.delete(:date_to); x.nil? ? nil : HttpClient::Preconditions.assert_class('date_to', HttpClient::Helper.to_date_iso8601(x), Date)) end |
Instance Attribute Details
#date_from ⇒ Object (readonly)
Returns the value of attribute date_from.
36620 36621 36622 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36620 def date_from @date_from end |
#date_to ⇒ Object (readonly)
Returns the value of attribute date_to.
36620 36621 36622 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36620 def date_to @date_to end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
36632 36633 36634 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36632 def copy(incoming={}) InvoiceExportForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
36636 36637 36638 36639 36640 36641 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36636 def to_hash { :date_from => date_from, :date_to => date_to } end |
#to_json ⇒ Object
36628 36629 36630 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36628 def to_json JSON.dump(to_hash) end |