class Postmen::Item
Attributes
description[R]
hs_code[R]
item_id[R]
origin_country[R]
price[R]
quantity[R]
sku[R]
weight[R]
Public Class Methods
new(options)
click to toggle source
# File lib/postmen/item.rb, line 14 def initialize(options) @description = options[:description] @quantity = options[:quantity] @price = options[:price] @weight = options[:weight] @item_id = options[:item_id] @origin_country = options[:origin_country] @sku = options[:sku] @hs_code = options[:hs_code] end