Class: Io::Flow::V0::Models::RemoteAreaRatecardFee

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

Instance Attribute Summary collapse

Attributes inherited from RatecardFee

#discriminator

Instance Method Summary collapse

Methods inherited from RatecardFee

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ RemoteAreaRatecardFee

Returns a new instance of RemoteAreaRatecardFee.



58869
58870
58871
58872
58873
58874
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58869

def initialize(incoming={})
  super(:discriminator => RatecardFee::Types::REMOTE_AREA_RATECARD_FEE)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:amount], 'RemoteAreaRatecardFee')
  @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.



58867
58868
58869
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58867

def amount
  @amount
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



58880
58881
58882
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58880

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

#subtype_to_hashObject



58884
58885
58886
58887
58888
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58884

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

#to_jsonObject



58876
58877
58878
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 58876

def to_json
  JSON.dump(to_hash)
end