Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

VoidCountStatus

Indicates the status of shipping labels/shipments which are sent to be cancelled.

Properties

Name Type Description Notes
success float The number of shipment labels which have been successfully cancelled. [optional]
failed float The number of shipment labels which failed cancelling due to some validation issue. [optional]
pending float The number of shipment labels which are pending and in-queue to be cancelled. [optional]

Example

from shipping.models.void_count_status import VoidCountStatus

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

# convert the object into a dict
void_count_status_dict = void_count_status_instance.to_dict()
# create an instance of VoidCountStatus from a dict
void_count_status_from_dict = VoidCountStatus.from_dict(void_count_status_dict)

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