Class: Io::Flow::V0::Models::SurchargeSetting

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

Returns a new instance of SurchargeSetting.



61640
61641
61642
61643
61644
61645
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61640

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:key, :responsible_party], 'SurchargeSetting')
  @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::DeliveryOptionCostDetailComponentKey) ? x : ::Io::Flow::V0::Models::DeliveryOptionCostDetailComponentKey.apply(x))
  @responsible_party = (x = opts.delete(:responsible_party); x.is_a?(::Io::Flow::V0::Models::SurchargeResponsibleParty) ? x : ::Io::Flow::V0::Models::SurchargeResponsibleParty.apply(x))
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



61638
61639
61640
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61638

def key
  @key
end

#responsible_partyObject (readonly)

Returns the value of attribute responsible_party.



61638
61639
61640
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61638

def responsible_party
  @responsible_party
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



61651
61652
61653
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61651

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

#to_hashObject



61655
61656
61657
61658
61659
61660
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61655

def to_hash
  {
    :key => key.value,
    :responsible_party => responsible_party.value
  }
end

#to_jsonObject



61647
61648
61649
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61647

def to_json
  JSON.dump(to_hash)
end