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
It displays the package details provided in the request.
[optional]
additionalnotes
str
It displays additional comments or remarks provided in the request, it would be printed on the scheduled pickup document
[optional]
reference
str
It displays any reference information provided in the request.
[optional]
pickup_date_time
str
It displays the scheduled pickup date
[optional]
pickup_total_weight
float
It displays the total package weight.
[optional]
pickup_total_weight_unit
str
It displays the weight unit.
[optional]
Example
fromshipping.models.schedule_pickup_usps_responseimportSchedulePickupUSPSResponse# TODO update the JSON string belowjson="{}"# create an instance of SchedulePickupUSPSResponse from a JSON stringschedule_pickup_usps_response_instance=SchedulePickupUSPSResponse.from_json(json)
# print the JSON string representation of the objectprint(SchedulePickupUSPSResponse.to_json())
# convert the object into a dictschedule_pickup_usps_response_dict=schedule_pickup_usps_response_instance.to_dict()
# create an instance of SchedulePickupUSPSResponse from a dictschedule_pickup_usps_response_from_dict=SchedulePickupUSPSResponse.from_dict(schedule_pickup_usps_response_dict)