class Postmen::Parcel
Attributes
box_type[R]
description[R]
dimension[R]
items[R]
weight[R]
Public Class Methods
new(options)
click to toggle source
# File lib/postmen/parcel.rb, line 11 def initialize(options) @box_type = options[:box_type] @dimension = options[:dimension] @items = options[:items] @description = options[:description] @weight = options[:weight] end