Class: Io::Flow::V0::Models::ConsumerInvoiceLineDiscount

Inherits:
ConsumerInvoiceLine show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Attributes inherited from ConsumerInvoiceLine

#discriminator

Instance Method Summary collapse

Methods inherited from ConsumerInvoiceLine

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ ConsumerInvoiceLineDiscount

Returns a new instance of ConsumerInvoiceLineDiscount.



26947
26948
26949
26950
26951
26952
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26947

def initialize(incoming={})
  super(:discriminator => ConsumerInvoiceLine::Types::CONSUMER_INVOICE_LINE_DISCOUNT)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:price], 'ConsumerInvoiceLineDiscount')
  @price = (x = opts.delete(:price); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x))
end

Instance Attribute Details

#priceObject (readonly)

Returns the value of attribute price.



26945
26946
26947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26945

def price
  @price
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



26958
26959
26960
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26958

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

#subtype_to_hashObject



26962
26963
26964
26965
26966
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26962

def subtype_to_hash
  {
    :price => price.to_hash
  }
end

#to_jsonObject



26954
26955
26956
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26954

def to_json
  JSON.dump(to_hash)
end