Sha256: 9f79f5c937315f3834cb1d2eb931227757f80997db675ac2e51e85ad87b98783
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module FriendlyShipping module Services # Option container for rating a shipment via USPS # # Context: The shipment object we're trying to get results for # USPS returns rates on a package-by-package basis, so the options for obtaining rates are # set on the [FriendlyShipping/RateEstimateObject] hash. The possible options are: # @param [Physical::ShippingMethod] shipping_method The shipping method ("service" in USPS parlance) we want # to get rates for. # @param [Boolean] commercial_pricing Whether we prefer commercial pricing results or retail results # @param [Boolean] hold_for_pickup Whether we want a rate with Hold For Pickup Service class UspsInternational class RateEstimateOptions < FriendlyShipping::ShipmentOptions def initialize( package_options_class: FriendlyShipping::Services::UspsInternational::RateEstimatePackageOptions, **kwargs ) super(**kwargs.reverse_merge(package_options_class: package_options_class)) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems