class FriendlyShipping::Services::UpsFreight::ShipmentDocument

Attributes

binary[R]
document_type[R]
format[R]

Public Class Methods

new( format:, document_type:, binary: ) click to toggle source
# File lib/friendly_shipping/services/ups_freight/shipment_document.rb, line 9
def initialize(
  format:,
  document_type:,
  binary:
)
  @format = format
  @document_type = document_type
  @binary = binary
end