class FriendlyShipping::Services::UpsFreight::ShipmentInformation

Attributes

bol_id[R]
documents[R]
number[R]
pickup_request_number[R]
shipping_method[R]
total[R]
warnings[R]

Public Class Methods

new( total:, bol_id:, number:, pickup_request_number: nil, documents: [], shipping_method: nil, warnings: nil ) click to toggle source
# File lib/friendly_shipping/services/ups_freight/shipment_information.rb, line 15
def initialize(
  total:,
  bol_id:,
  number:,
  pickup_request_number: nil,
  documents: [],
  shipping_method: nil,
  warnings: nil
)
  @total = total
  @bol_id = bol_id
  @number = number
  @pickup_request_number = pickup_request_number
  @documents = documents
  @shipping_method = shipping_method
  @warnings = warnings
end