Class: Io::Flow::V0::Models::ConsumerInvoiceLineShipping

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

Returns a new instance of ConsumerInvoiceLineShipping.



33643
33644
33645
33646
33647
33648
33649
33650
33651
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33643

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

Instance Attribute Details

#discountObject (readonly)

Returns the value of attribute discount.



33641
33642
33643
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33641

def discount
  @discount
end

#dutyObject (readonly)

Returns the value of attribute duty.



33641
33642
33643
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33641

def duty
  @duty
end

#priceObject (readonly)

Returns the value of attribute price.



33641
33642
33643
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33641

def price
  @price
end

#taxObject (readonly)

Returns the value of attribute tax.



33641
33642
33643
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33641

def tax
  @tax
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33657
33658
33659
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33657

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

#subtype_to_hashObject



33661
33662
33663
33664
33665
33666
33667
33668
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33661

def subtype_to_hash
  {
    :price => price.to_hash,
    :discount => discount.nil? ? nil : discount.to_hash,
    :tax => tax.nil? ? nil : tax.to_hash,
    :duty => duty.nil? ? nil : duty.to_hash
  }
end

#to_jsonObject



33653
33654
33655
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33653

def to_json
  JSON.dump(to_hash)
end