Class: Io::Flow::V0::Models::InboundCartonFee

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

Instance Attribute Summary collapse

Attributes inherited from PartnerCenterFee

#discriminator

Instance Method Summary collapse

Methods inherited from PartnerCenterFee

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ InboundCartonFee

Returns a new instance of InboundCartonFee.



35091
35092
35093
35094
35095
35096
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35091

def initialize(incoming={})
  super(:discriminator => PartnerCenterFee::Types::INBOUND_CARTON_FEE)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:amount], 'InboundCartonFee')
  @amount = (x = opts.delete(:amount); x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x))
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



35089
35090
35091
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35089

def amount
  @amount
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



35102
35103
35104
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35102

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

#subtype_to_hashObject



35106
35107
35108
35109
35110
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35106

def subtype_to_hash
  {
    :amount => amount.to_hash
  }
end

#to_jsonObject



35098
35099
35100
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35098

def to_json
  JSON.dump(to_hash)
end