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.



38403
38404
38405
38406
38407
38408
38409
38410
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38403

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.



38401
38402
38403
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38401

def base
  @base
end

#discountObject (readonly)

Returns the value of attribute discount.



38401
38402
38403
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38401

def discount
  @discount
end

#localObject (readonly)

Returns the value of attribute local.



38401
38402
38403
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38401

def local
  @local
end

#local_before_discountObject (readonly)

Returns the value of attribute local_before_discount.



38401
38402
38403
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38401

def local_before_discount
  @local_before_discount
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



38416
38417
38418
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38416

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

#to_hashObject



38420
38421
38422
38423
38424
38425
38426
38427
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38420

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



38412
38413
38414
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38412

def to_json
  JSON.dump(to_hash)
end