You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
fromshipping.models.create_bulk_shipments_api_requestimportCreateBulkShipmentsAPIRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateBulkShipmentsAPIRequest from a JSON stringcreate_bulk_shipments_api_request_instance=CreateBulkShipmentsAPIRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateBulkShipmentsAPIRequest.to_json())
# convert the object into a dictcreate_bulk_shipments_api_request_dict=create_bulk_shipments_api_request_instance.to_dict()
# create an instance of CreateBulkShipmentsAPIRequest from a dictcreate_bulk_shipments_api_request_from_dict=CreateBulkShipmentsAPIRequest.from_dict(create_bulk_shipments_api_request_dict)