You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parcel Type is required for creating a shipment while rating a parcel, which varies as per Carrier selection. Here, it reflects as per the defined ParcelType Rules. ParcelType have categories like Package, Envelopes, Paks, Boxes, Tube, etc.
[optional]
trackable
str
Whether this parcel type is trackable. Valid Values are: TRACKABLE, NON_TRACKABLE, REQUIRES_TRACKABLE_SPECIAL_SERVICE
[optional]
suggested_trackable_special_service
str
If trackable is set to REQUIRES_TRACKABLE_SPECIAL_SERVICE, this is a free or low-cost special service that allows the shipper to track the shipment.
It displays all the available special services, their details and prerequisites and/or incompatible details with other special services
[optional]
Example
fromshipping.models.special_services_services_inner_parcel_type_rules_innerimportSpecialServicesServicesInnerParcelTypeRulesInner# TODO update the JSON string belowjson="{}"# create an instance of SpecialServicesServicesInnerParcelTypeRulesInner from a JSON stringspecial_services_services_inner_parcel_type_rules_inner_instance=SpecialServicesServicesInnerParcelTypeRulesInner.from_json(json)
# print the JSON string representation of the objectprint(SpecialServicesServicesInnerParcelTypeRulesInner.to_json())
# convert the object into a dictspecial_services_services_inner_parcel_type_rules_inner_dict=special_services_services_inner_parcel_type_rules_inner_instance.to_dict()
# create an instance of SpecialServicesServicesInnerParcelTypeRulesInner from a dictspecial_services_services_inner_parcel_type_rules_inner_from_dict=SpecialServicesServicesInnerParcelTypeRulesInner.from_dict(special_services_services_inner_parcel_type_rules_inner_dict)