class Postmen::Shipment

Attributes

parcels[R]
ship_from[R]
ship_to[R]

Public Class Methods

new(options) click to toggle source
# File lib/postmen/shipment.rb, line 9
def initialize(options)
  @ship_from = options[:ship_from]
  @ship_to = options[:ship_to]
  @parcels = options[:parcels]
end