Class: Io::Flow::V0::Models::LocalPriceDetails

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

Returns a new instance of LocalPriceDetails.



20251
20252
20253
20254
20255
20256
20257
20258
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20251

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:base, :local], 'LocalPriceDetails')
  @base = (x = opts.delete(:base); x.is_a?(::Io::Flow::V0::Models::PriceDetails) ? x : ::Io::Flow::V0::Models::PriceDetails.new(x))
  @local = (x = opts.delete(:local); x.is_a?(::Io::Flow::V0::Models::PriceDetails) ? x : ::Io::Flow::V0::Models::PriceDetails.new(x))
  @discount = (x = opts.delete(:discount); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PriceDetail) ? x : ::Io::Flow::V0::Models::PriceDetail.new(x)))
  @local_before_discount = (x = opts.delete(:local_before_discount); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PriceDetail) ? x : ::Io::Flow::V0::Models::PriceDetail.new(x)))
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base.



20249
20250
20251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20249

def base
  @base
end

#discountObject (readonly)

Returns the value of attribute discount.



20249
20250
20251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20249

def discount
  @discount
end

#localObject (readonly)

Returns the value of attribute local.



20249
20250
20251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20249

def local
  @local
end

#local_before_discountObject (readonly)

Returns the value of attribute local_before_discount.



20249
20250
20251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20249

def local_before_discount
  @local_before_discount
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



20264
20265
20266
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20264

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

#to_hashObject



20268
20269
20270
20271
20272
20273
20274
20275
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20268

def to_hash
  {
    :base => base.to_hash,
    :local => local.to_hash,
    :discount => discount.nil? ? nil : discount.to_hash,
    :local_before_discount => local_before_discount.nil? ? nil : local_before_discount.to_hash
  }
end

#to_jsonObject



20260
20261
20262
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20260

def to_json
  JSON.dump(to_hash)
end