Class: Io::Flow::V0::Models::DetailedShippingNotificationForm

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

Overview

Detailed form for information about a client-facilitated shipment where the shipping label and fulfillment was not handled by Flow.

Instance Attribute Summary collapse

Attributes inherited from ShippingNotificationForm

#discriminator

Instance Method Summary collapse

Methods inherited from ShippingNotificationForm

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ DetailedShippingNotificationForm

Returns a new instance of DetailedShippingNotificationForm.



26468
26469
26470
26471
26472
26473
26474
26475
26476
26477
26478
26479
26480
26481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26468

def initialize(incoming={})
  super(:discriminator => ShippingNotificationForm::Types::DETAILED_SHIPPING_NOTIFICATION_FORM)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:carrier_tracking_number, :destination, :order_number, :package, :service], 'DetailedShippingNotificationForm')
  @key = (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, String))
  @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h })
  @carrier_tracking_number = HttpClient::Preconditions.assert_class('carrier_tracking_number', opts.delete(:carrier_tracking_number), String)
  @destination = (x = opts.delete(:destination); x.is_a?(::Io::Flow::V0::Models::ShippingAddress) ? x : ::Io::Flow::V0::Models::ShippingAddress.new(x))
  @order_number = HttpClient::Preconditions.assert_class('order_number', opts.delete(:order_number), String)
  @package = (x = opts.delete(:package); x.is_a?(::Io::Flow::V0::Models::ShippingLabelPackage) ? x : ::Io::Flow::V0::Models::ShippingLabelPackage.new(x))
  @service = HttpClient::Preconditions.assert_class('service', opts.delete(:service), String)
  @origin = (x = opts.delete(:origin); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ShippingAddress) ? x : ::Io::Flow::V0::Models::ShippingAddress.new(x)))
  @shipment_recipient = (x = opts.delete(:shipment_recipient); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ShipmentRecipient) ? x : ::Io::Flow::V0::Models::ShipmentRecipient.apply(x)))
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def attributes
  @attributes
end

#carrier_tracking_numberObject (readonly)

Returns the value of attribute carrier_tracking_number.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def carrier_tracking_number
  @carrier_tracking_number
end

#destinationObject (readonly)

Returns the value of attribute destination.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def destination
  @destination
end

#keyObject (readonly)

Returns the value of attribute key.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def key
  @key
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def order_number
  @order_number
end

#originObject (readonly)

Returns the value of attribute origin.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def origin
  @origin
end

#packageObject (readonly)

Returns the value of attribute package.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def package
  @package
end

#serviceObject (readonly)

Returns the value of attribute service.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def service
  @service
end

#shipment_recipientObject (readonly)

Returns the value of attribute shipment_recipient.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def shipment_recipient
  @shipment_recipient
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



26487
26488
26489
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26487

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

#subtype_to_hashObject



26491
26492
26493
26494
26495
26496
26497
26498
26499
26500
26501
26502
26503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26491

def subtype_to_hash
  {
    :key => key,
    :attributes => attributes.nil? ? nil : attributes,
    :carrier_tracking_number => carrier_tracking_number,
    :destination => destination.to_hash,
    :order_number => order_number,
    :package => package.to_hash,
    :service => service,
    :origin => origin.nil? ? nil : origin.to_hash,
    :shipment_recipient => shipment_recipient.nil? ? nil : shipment_recipient.value
  }
end

#to_jsonObject



26483
26484
26485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26483

def to_json
  JSON.dump(to_hash)
end