Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.94 KB

File metadata and controls

34 lines (25 loc) · 1.94 KB

SchedulePickupUPSResponsePickupSummaryInner

Properties

Name Type Description Notes
service_id str The service id [optional]
package_count float The total number of packages [optional]
total_weight float The total weight of the packages [optional]
weight_unit str Weight Unit, supported values are `OZ` and `GM` [optional]
parcel_type str It indicates the parcel type, applicable values are- `PKG`,`LTR`,`TUBE`,`PACK`,`BOX`,`25KG`,`10KG`,`SMALL_EXP_BOX`,`MED_EXP_BOX`,`LG_EXP_BOX` [optional]
to_address_country_code str It indicates the 2 characters- ISO country code of recipient of the shipment. [optional]

Example

from shipping.models.schedule_pickup_ups_response_pickup_summary_inner import SchedulePickupUPSResponsePickupSummaryInner

# TODO update the JSON string below
json = "{}"
# create an instance of SchedulePickupUPSResponsePickupSummaryInner from a JSON string
schedule_pickup_ups_response_pickup_summary_inner_instance = SchedulePickupUPSResponsePickupSummaryInner.from_json(json)
# print the JSON string representation of the object
print(SchedulePickupUPSResponsePickupSummaryInner.to_json())

# convert the object into a dict
schedule_pickup_ups_response_pickup_summary_inner_dict = schedule_pickup_ups_response_pickup_summary_inner_instance.to_dict()
# create an instance of SchedulePickupUPSResponsePickupSummaryInner from a dict
schedule_pickup_ups_response_pickup_summary_inner_from_dict = SchedulePickupUPSResponsePickupSummaryInner.from_dict(schedule_pickup_ups_response_pickup_summary_inner_dict)

[Back to Model list] [Back to API list] [Back to README]