Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.21 KB

File metadata and controls

29 lines (20 loc) · 1.21 KB

GetPickupCancelledDocumentRequest

Properties

Name Type Description Notes
pickup_ids List[str] It specified the pickup Ids which are cancelled and for which receipt is required. [optional]

Example

from shipping.models.get_pickup_cancelled_document_request import GetPickupCancelledDocumentRequest

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

# convert the object into a dict
get_pickup_cancelled_document_request_dict = get_pickup_cancelled_document_request_instance.to_dict()
# create an instance of GetPickupCancelledDocumentRequest from a dict
get_pickup_cancelled_document_request_from_dict = GetPickupCancelledDocumentRequest.from_dict(get_pickup_cancelled_document_request_dict)

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