Class: Io::Flow::V0::Models::InvoiceExportForm

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ InvoiceExportForm

Returns a new instance of InvoiceExportForm.



43521
43522
43523
43524
43525
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43521

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_fromObject (readonly)

Returns the value of attribute date_from.



43519
43520
43521
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43519

def date_from
  @date_from
end

#date_toObject (readonly)

Returns the value of attribute date_to.



43519
43520
43521
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43519

def date_to
  @date_to
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



43531
43532
43533
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43531

def copy(incoming={})
  InvoiceExportForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



43535
43536
43537
43538
43539
43540
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43535

def to_hash
  {
    :date_from => date_from,
    :date_to => date_to
  }
end

#to_jsonObject



43527
43528
43529
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43527

def to_json
  JSON.dump(to_hash)
end