Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.97 KB

File metadata and controls

35 lines (26 loc) · 1.97 KB

GetAllPickupsDataInnerPickupSummaryInner

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]
currency_code str Currency code [optional]

Example

from shipping.models.get_all_pickups_data_inner_pickup_summary_inner import GetAllPickupsDataInnerPickupSummaryInner

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

# convert the object into a dict
get_all_pickups_data_inner_pickup_summary_inner_dict = get_all_pickups_data_inner_pickup_summary_inner_instance.to_dict()
# create an instance of GetAllPickupsDataInnerPickupSummaryInner from a dict
get_all_pickups_data_inner_pickup_summary_inner_from_dict = GetAllPickupsDataInnerPickupSummaryInner.from_dict(get_all_pickups_data_inner_pickup_summary_inner_dict)

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