Class: Io::Flow::V0::Models::PriceDetailComponent

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

Returns a new instance of PriceDetailComponent.



27062
27063
27064
27065
27066
27067
27068
27069
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27062

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:key, :amount, :label], 'PriceDetailComponent')
  @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::PriceDetailComponentKey) ? x : ::Io::Flow::V0::Models::PriceDetailComponentKey.apply(x))
  @amount = HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(opts.delete(:amount)), BigDecimal)
  @label = HttpClient::Preconditions.assert_class('label', opts.delete(:label), String)
  @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String))
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



27060
27061
27062
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27060

def amount
  @amount
end

#keyObject (readonly)

Returns the value of attribute key.



27060
27061
27062
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27060

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



27060
27061
27062
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27060

def label
  @label
end

#nameObject (readonly)

Returns the value of attribute name.



27060
27061
27062
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27060

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



27075
27076
27077
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27075

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

#to_hashObject



27079
27080
27081
27082
27083
27084
27085
27086
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27079

def to_hash
  {
    :key => key.value,
    :amount => amount,
    :label => label,
    :name => name
  }
end

#to_jsonObject



27071
27072
27073
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27071

def to_json
  JSON.dump(to_hash)
end