| Name | Type | Description | Notes |
|---|---|---|---|
| layout | BulkShipmentResponseERRLabelDetailsLayout | [optional] |
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)