Sha256: f278220bca012463ab1e84fffda9a1c53c0811dab2950a7c41ac1cbf09190f00
Contents?: true
Size: 517 Bytes
Versions: 8
Compression:
Stored size: 517 Bytes
Contents
# frozen_string_literal: true module FreightKit # The `PickupResponse` object is returned by the {FreightKit::Carrier#create_pickup} # call. The most important method is {#pickup_number}, which will return the pickup reference # number. # # @!attribute labels # Shipping labels. # @return [Array<FreightKit::Label>] # # @!attribute pickup_number # Pickup reference number. # @return [String] # class PickupResponse < Response attr_accessor :labels, :pickup_number end end
Version data entries
8 entries across 8 versions & 1 rubygems