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.



19375
19376
19377
19378
19379
19380
19381
19382
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19375

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.



19373
19374
19375
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19373

def base
  @base
end

#discountObject (readonly)

Returns the value of attribute discount.



19373
19374
19375
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19373

def discount
  @discount
end

#localObject (readonly)

Returns the value of attribute local.



19373
19374
19375
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19373

def local
  @local
end

#local_before_discountObject (readonly)

Returns the value of attribute local_before_discount.



19373
19374
19375
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19373

def local_before_discount
  @local_before_discount
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



19388
19389
19390
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19388

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

#to_hashObject



19392
19393
19394
19395
19396
19397
19398
19399
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19392

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



19384
19385
19386
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19384

def to_json
  JSON.dump(to_hash)
end