class Postmen::Customs
Attributes
billing[R]
eei[R]
importer_address[R]
passport[R]
purpose[R]
terms_of_trade[R]
Public Class Methods
new(options)
click to toggle source
# File lib/postmen/customs.rb, line 12 def initialize(options) @purpose = options[:purpose] @terms_of_trade = options[:terms_of_trade] @eei = options[:eei] @billing = options[:billing] @importer_address = options[:importer_address] @passport = options[:passport] end