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 specified the pickup Ids which are cancelled and for which receipt is required.
[optional]
Example
fromshipping.models.get_pickup_cancelled_document_requestimportGetPickupCancelledDocumentRequest# TODO update the JSON string belowjson="{}"# create an instance of GetPickupCancelledDocumentRequest from a JSON stringget_pickup_cancelled_document_request_instance=GetPickupCancelledDocumentRequest.from_json(json)
# print the JSON string representation of the objectprint(GetPickupCancelledDocumentRequest.to_json())
# convert the object into a dictget_pickup_cancelled_document_request_dict=get_pickup_cancelled_document_request_instance.to_dict()
# create an instance of GetPickupCancelledDocumentRequest from a dictget_pickup_cancelled_document_request_from_dict=GetPickupCancelledDocumentRequest.from_dict(get_pickup_cancelled_document_request_dict)