Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.24 KB

File metadata and controls

29 lines (20 loc) · 1.24 KB

BulkShipmentResponseERRLabelDetails

Properties

Name Type Description Notes
layout BulkShipmentResponseERRLabelDetailsLayout [optional]

Example

from shipping.models.bulk_shipment_response_err_label_details import BulkShipmentResponseERRLabelDetails

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

# convert the object into a dict
bulk_shipment_response_err_label_details_dict = bulk_shipment_response_err_label_details_instance.to_dict()
# create an instance of BulkShipmentResponseERRLabelDetails from a dict
bulk_shipment_response_err_label_details_from_dict = BulkShipmentResponseERRLabelDetails.from_dict(bulk_shipment_response_err_label_details_dict)

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