ShipmentBatch information contains the BatchId, Carrier,To and From addresses, Tracking details, and Event information of the Ship Request.
| Name | Type | Description | Notes |
|---|---|---|---|
| group_name | str | [optional] | |
| size | str | This indicates the label size of the Bulk Shipment, e.g., DocSize can be 8' X 11'. | |
| type | str | This indicates the type of the Batch Shipment, e.g., Shipping Label. | |
| format | str | This defines the type of the shipment which is printed, e.g., Shipping label gets printed in PDF form. | [optional] |
| name | str | ||
| carrier_account_id | str | Default `carrierAccountId` to be used for this batch. You can override this value by defining it at shipment level. | |
| parcel_type | str | Default `parcelType` specific to the carrier, e.g., FRPKG, LGENV, TUBE,PKG to be used for this batch. You can override this value by defining it at shipment level. | |
| service_id | str | Default abbreviated name `serviceId` of the carrier-specific service to be used for this batch. You can override this value by defining it at shipment level. | |
| special_services | List[SpecialService] | Default `specialServices` to be used for this batch. You can override this value by defining it at shipment level. | [optional] |
| shipments | List[ShipmentInternational] |
from shipping.models.create_bulk_shipment_international import CreateBulkShipmentInternational
# TODO update the JSON string below
json = "{}"
# create an instance of CreateBulkShipmentInternational from a JSON string
create_bulk_shipment_international_instance = CreateBulkShipmentInternational.from_json(json)
# print the JSON string representation of the object
print(CreateBulkShipmentInternational.to_json())
# convert the object into a dict
create_bulk_shipment_international_dict = create_bulk_shipment_international_instance.to_dict()
# create an instance of CreateBulkShipmentInternational from a dict
create_bulk_shipment_international_from_dict = CreateBulkShipmentInternational.from_dict(create_bulk_shipment_international_dict)