Class: Io::Flow::V0::Models::RatecardRate

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

Overview

Specific line item in a ratecard lane with information on a weight threshold and corresponding amount to charge

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ RatecardRate

Returns a new instance of RatecardRate.



57770
57771
57772
57773
57774
57775
57776
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57770

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :amount, :weight], 'RatecardRate')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @amount = HttpClient::Preconditions.assert_class('amount', opts.delete(:amount), Numeric)
  @weight = HttpClient::Preconditions.assert_class('weight', opts.delete(:weight), Numeric)
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



57768
57769
57770
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57768

def amount
  @amount
end

#idObject (readonly)

Returns the value of attribute id.



57768
57769
57770
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57768

def id
  @id
end

#weightObject (readonly)

Returns the value of attribute weight.



57768
57769
57770
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57768

def weight
  @weight
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



57782
57783
57784
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57782

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

#to_hashObject



57786
57787
57788
57789
57790
57791
57792
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57786

def to_hash
  {
    :id => id,
    :amount => amount,
    :weight => weight
  }
end

#to_jsonObject



57778
57779
57780
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 57778

def to_json
  JSON.dump(to_hash)
end