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.



53238
53239
53240
53241
53242
53243
53244
53245
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53238

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.



53236
53237
53238
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53236

def amount
  @amount
end

#keyObject (readonly)

Returns the value of attribute key.



53236
53237
53238
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53236

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



53236
53237
53238
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53236

def label
  @label
end

#nameObject (readonly)

Returns the value of attribute name.



53236
53237
53238
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53236

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



53251
53252
53253
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53251

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

#to_hashObject



53255
53256
53257
53258
53259
53260
53261
53262
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53255

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

#to_jsonObject



53247
53248
53249
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53247

def to_json
  JSON.dump(to_hash)
end