Sha256: c6983dd198fa15a466a08e4aa0c667bde0fdd1a566ce2807c861bad6a35dd192
Contents?: true
Size: 409 Bytes
Versions: 14
Compression:
Stored size: 409 Bytes
Contents
# frozen_string_literal: true module FriendlyShipping module Services class UpsFreight class ShipmentDocument attr_reader :format, :document_type, :binary def initialize( format:, document_type:, binary: ) @format = format @document_type = document_type @binary = binary end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems