We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74621e1 commit 586a3a9Copy full SHA for 586a3a9
openship/domain/entities/definitions.py
@@ -3,7 +3,7 @@
3
from collections import namedtuple
4
5
''' shipment details Type definition '''
6
-class shipment_details_type(namedtuple("shipment_details_type", "packages insurance charges_payment number_of_packages packaging_type is_dutiable currency total_weight weight_unit dimension_unit")):
+class shipment_details_type(namedtuple("shipment_details_type", "packages insurance charges_payment number_of_packages packaging_type is_dutiable currency total_weight weight_unit dimension_unit payment_country_code")):
7
def __new__(cls, packages, insurance=None, charges_payment=None, number_of_packages=None, packaging_type=None, is_dutiable="N", currency=None, total_weight=None, weight_unit="LB", dimension_unit="IN", payment_country_code=None):
8
return super(cls, shipment_details_type).__new__(
9
cls,
0 commit comments