Sha256: d97863f35784928138f9b951d82280296b5679075a5ec6c1380159d36638cf1c

Contents?: true

Size: 621 Bytes

Versions: 2

Compression:

Stored size: 621 Bytes

Contents

module Workarea
  module GlobalE
    module Merchant
      class ParcelTracking

        # Tracking number used by the selected international shipping method
        # for this parcel.
        #
        # @return [String]
        #
        def tracking_number
        end

        # Full tracking URL including ParcelTrackingNumber used by the selected
        # international shipping method for this parcel.
        #
        # @return [String]
        #
        def tracking_url
        end

        # Parcel code
        #
        # @return [String]
        #
        def code
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workarea-global_e-1.3.0 app/services/workarea/global_e/merchant/parcel_tracking.rb
workarea-global_e-1.2.1 app/services/workarea/global_e/merchant/parcel_tracking.rb