Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.46 KB

File metadata and controls

32 lines (23 loc) · 1.46 KB

LabelGenerationCountStatus

Indicates the status of shipping labels/coversheets which are at final steps before printing.

Properties

Name Type Description Notes
success float The number of shipment labels which have been successfully generated. [optional]
failed float The number of shipment labels which failed processing and could not be generated due to some errors with shipment. [optional]
pending float The number of shipment labels which are pending and in-queue to be processed. [optional]

Example

from shipping.models.label_generation_count_status import LabelGenerationCountStatus

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

# convert the object into a dict
label_generation_count_status_dict = label_generation_count_status_instance.to_dict()
# create an instance of LabelGenerationCountStatus from a dict
label_generation_count_status_from_dict = LabelGenerationCountStatus.from_dict(label_generation_count_status_dict)

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