Class: Io::Flow::V0::Models::TransitWindow

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 = {}) ⇒ TransitWindow

Returns a new instance of TransitWindow.



66783
66784
66785
66786
66787
66788
66789
66790
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66783

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:origin_country, :destination_country, :from, :to], 'TransitWindow')
  @origin_country = HttpClient::Preconditions.assert_class('origin_country', opts.delete(:origin_country), String)
  @destination_country = HttpClient::Preconditions.assert_class('destination_country', opts.delete(:destination_country), String)
  @from = HttpClient::Preconditions.assert_class('from', opts.delete(:from), Integer)
  @to = HttpClient::Preconditions.assert_class('to', opts.delete(:to), Integer)
end

Instance Attribute Details

#destination_countryObject (readonly)

Returns the value of attribute destination_country.



66781
66782
66783
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66781

def destination_country
  @destination_country
end

#fromObject (readonly)

Returns the value of attribute from.



66781
66782
66783
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66781

def from
  @from
end

#origin_countryObject (readonly)

Returns the value of attribute origin_country.



66781
66782
66783
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66781

def origin_country
  @origin_country
end

#toObject (readonly)

Returns the value of attribute to.



66781
66782
66783
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66781

def to
  @to
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



66796
66797
66798
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66796

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

#to_hashObject



66800
66801
66802
66803
66804
66805
66806
66807
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66800

def to_hash
  {
    :origin_country => origin_country,
    :destination_country => destination_country,
    :from => from,
    :to => to
  }
end

#to_jsonObject



66792
66793
66794
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66792

def to_json
  JSON.dump(to_hash)
end