Class: Io::Flow::V0::Models::DeliveryOptionSummary

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

Returns a new instance of DeliveryOptionSummary.



35934
35935
35936
35937
35938
35939
35940
35941
35942
35943
35944
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35934

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :cost, :delivered_duty, :price, :service, :tier, :window], 'DeliveryOptionSummary')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @cost = (x = opts.delete(:cost); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x))
  @delivered_duty = (x = opts.delete(:delivered_duty); x.is_a?(::Io::Flow::V0::Models::DeliveredDuty) ? x : ::Io::Flow::V0::Models::DeliveredDuty.apply(x))
  @price = (x = opts.delete(:price); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x))
  @service = (x = opts.delete(:service); x.is_a?(::Io::Flow::V0::Models::ServiceReference) ? x : ::Io::Flow::V0::Models::ServiceReference.new(x))
  @tier = (x = opts.delete(:tier); x.is_a?(::Io::Flow::V0::Models::TierReference) ? x : ::Io::Flow::V0::Models::TierReference.new(x))
  @window = (x = opts.delete(:window); x.is_a?(::Io::Flow::V0::Models::DatetimeRange) ? x : ::Io::Flow::V0::Models::DatetimeRange.new(x))
end

Instance Attribute Details

#costObject (readonly)

Returns the value of attribute cost.



35932
35933
35934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35932

def cost
  @cost
end

#delivered_dutyObject (readonly)

Returns the value of attribute delivered_duty.



35932
35933
35934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35932

def delivered_duty
  @delivered_duty
end

#idObject (readonly)

Returns the value of attribute id.



35932
35933
35934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35932

def id
  @id
end

#priceObject (readonly)

Returns the value of attribute price.



35932
35933
35934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35932

def price
  @price
end

#serviceObject (readonly)

Returns the value of attribute service.



35932
35933
35934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35932

def service
  @service
end

#tierObject (readonly)

Returns the value of attribute tier.



35932
35933
35934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35932

def tier
  @tier
end

#windowObject (readonly)

Returns the value of attribute window.



35932
35933
35934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35932

def window
  @window
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



35950
35951
35952
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35950

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

#to_hashObject



35954
35955
35956
35957
35958
35959
35960
35961
35962
35963
35964
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35954

def to_hash
  {
    :id => id,
    :cost => cost.to_hash,
    :delivered_duty => delivered_duty.value,
    :price => price.to_hash,
    :service => service.to_hash,
    :tier => tier.to_hash,
    :window => window.to_hash
  }
end

#to_jsonObject



35946
35947
35948
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35946

def to_json
  JSON.dump(to_hash)
end