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.



34992
34993
34994
34995
34996
34997
34998
34999
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34992

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.



34990
34991
34992
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34990

def amount
  @amount
end

#keyObject (readonly)

Returns the value of attribute key.



34990
34991
34992
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34990

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



34990
34991
34992
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34990

def label
  @label
end

#nameObject (readonly)

Returns the value of attribute name.



34990
34991
34992
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34990

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



35005
35006
35007
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35005

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

#to_hashObject



35009
35010
35011
35012
35013
35014
35015
35016
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35009

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

#to_jsonObject



35001
35002
35003
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35001

def to_json
  JSON.dump(to_hash)
end