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.



29812
29813
29814
29815
29816
29817
29818
29819
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29812

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.



29810
29811
29812
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29810

def base
  @base
end

#discountObject (readonly)

Returns the value of attribute discount.



29810
29811
29812
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29810

def discount
  @discount
end

#localObject (readonly)

Returns the value of attribute local.



29810
29811
29812
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29810

def local
  @local
end

#local_before_discountObject (readonly)

Returns the value of attribute local_before_discount.



29810
29811
29812
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29810

def local_before_discount
  @local_before_discount
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



29825
29826
29827
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29825

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

#to_hashObject



29829
29830
29831
29832
29833
29834
29835
29836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29829

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



29821
29822
29823
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29821

def to_json
  JSON.dump(to_hash)
end